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.
我有一个用户可以设置的字符串,我想在模式中使用该字符串。
图案应如下所示“。” + 输入字符串 + "."
虽然如果使用在输入中有正则表达式特定字符。模式会破坏不会吗?
如何创建一个模式,以便正则表达式忽略 inputStr 中的内容?
有任何想法吗?
尝试:
Regex.Escape(inputStr);
这应该转义任何会与您混淆的字符的字符串RegEx(而是从字面上解释这些字符)。
RegEx