Need to perform Wildcard (*,?, etc) search on a string using Regex

后端 未结 10 2377
执笔经年
执笔经年 2020-11-27 04:35

I need to perform Wildcard (*, ?, etc.) search on a string. This is what I have done:

string input = \"Message\";
string pattern =          


        
10条回答
  •  离开以前
    2020-11-27 05:01

    You may want to use WildcardPattern from System.Management.Automation assembly. See my answer here.

提交回复
热议问题