C# C:\Users\Lee\Desktop\6PB0435401GP.pdf取值最后字符.后面的字符串
时间: 2024-04-10 16:25:23 浏览: 106
C#字符串函数.pdf
C#是一种通用的面向对象编程语言,由微软公司开发。它具有简单、现代、安全和可靠的特性,广泛应用于Windows平台的软件开发。C#语言结合了C和C++的优点,并添加了许多新的特性。
关于你提到的文件路径"C:\Users\Lee\Desktop\6PB0435401GP.pdf",如果你想获取文件名中最后一个点(.)后面的字符串,可以使用C#中的Path类来实现。具体代码如下:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = @"C:\Users\Lee\Desktop\6PB0435401GP.pdf";
string fileName = Path.GetFileName(filePath);
int lastDotIndex = fileName.LastIndexOf('.');
if (lastDotIndex != -1 && lastDotIndex < fileName.Length - 1)
{
string extension = fileName.Substring(lastDotIndex + 1);
Console.WriteLine("文件扩展名: " + extension);
}
else
{
Console.WriteLine("文件名不包含扩展名");
}
}
}
```
上述代码中,我们使用Path类的GetFileName方法获取文件名,并使用LastIndexOf方法找到最后一个点的索引。然后使用Substring方法获取点后面的字符串,即文件的扩展名。如果文件名不包含扩展名,则输出相应的提示信息。
阅读全文