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.
文字列「test」と「te [smf] t」が等しいと見なされるような文字列比較をC#で実行できますか(等しいかどうかを照合できるいくつかの文字を書くため)?
はい、もちろん。ゴーゴー正規表現:
Regex.IsMatch("test","te[smf]t");