String fileName = excelFilePath.Substring(excelFilePath.LastIndexOf("\\"),excelFilePath.Length-1 ); fileName = fileName.Substring(0, fileName.Length - fileName.LastIndexOf(".") - 1); 优化这段代码
时间: 2024-03-21 21:42:14 浏览: 71
getFileName
这段代码可以优化如下:
```
string fileName = Path.GetFileNameWithoutExtension(excelFilePath);
```
使用 `Path.GetFileNameWithoutExtension` 方法可以直接获取文件名(不包括扩展名),而不需要使用 `Substring` 和 `LastIndexOf` 方法来截取。这样可以使代码更简洁、更易读。
阅读全文