现在我有一个文件,比如文件名是:文件名yynn1233。现在我想只提取出yynn1233这几个字符。把前面的汉字去掉。求解~C#~求代码,求例子,求~各种求~
Match m = Regex.Match("文件名yynn1233","([\u0020-\u007e]+)"); string result = m.Value;
Match m = Regex.Match("我是谁Whoami163.txt","\\b\\w+\\b"); string result = m.Value;
正则表达式,无他