有没有比使用 substring() 更简单、更短的方法?我试图减少错误,因为在输入 LastIndexOf 和 Length 以及计数器时很容易出错。
string filepath = "c:\folder1\folder2\folder3\file1.jpg";
string file = "";
file = filepath.SubString(
(filepath.LastIndexOf("\\")+1),
(filepath.Length - filepath.LastIndexOf("\\")+1)
);
我想得到这个值“file1.jpg”。
谢谢...