Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何匹配文字字符串' .* '?' .* ' 只是要搜索的字符串,在正则表达式中没有任何含义。谢谢。
您必须转义序列:
\.\*
你将不得不逃避它
'\.\*'
使用 C# 时,您应该考虑使用
Regex.Escape()
在将外部输入用作正则表达式的一部分之前