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