C:\Users\asus\AppData\Local\Temporary Projects\ConsoleApplication1\bin\Release\sfref.txt
如何拆分字符串以仅获取sfref.txt
C:\Users\asus\AppData\Local\Temporary Projects\ConsoleApplication1\bin\Release\sfref.txt
如何拆分字符串以仅获取sfref.txt
你不需要正则表达式...
System.IO.Path.GetFilename(fullpath);
使用Path.GetFileName方法:
var path = @"C:\Users\asus\AppData\Local\Temporary Projects\ConsoleApplication1\bin\Release\sfref.txt";
string name = Path.GetFileName(path); // sfref.txt
如果您真的需要使用正则表达式来做到这一点(我不建议这样做):
string name = Regex.Match(path, @"[^\\]*$").Value;