C# string字符串截取
时间: 2024-02-16 07:58:14 浏览: 131
C#几种截取字符串的方法小结
5星 · 资源好评率100%
以下是C#中几种常用的字符串截取方法:
1. 使用Split方法根据指定的分隔符将字符串拆分成字符串数组:
```csharp
string str = "Hello World";
string[] sArray = str.Split(new char[] { ' ' });
// 输出:sArray = ["Hello", "World"]
```
2. 使用Substring方法截取指定位置的子字符串:
```csharp
string str = "Hello World";
string subStr = str.Substring(6);
// 输出:subStr = "World"
```
3. 使用Substring方法截取指定位置和长度的子字符串:
```csharp
string str = "Hello World";
string subStr = str.Substring(0, 5);
// 输出:subStr = "Hello"
```
4. 使用Replace方法替换指定的字符串:
```csharp
string str = "Hello World";
string newStr = str.Replace("World", "Universe");
// 输出:newStr = "Hello Universe"
```
5. 使用Remove方法删除指定位置和长度的子字符串:
```csharp
string str = "Hello World";
string newStr = str.Remove(5, 6);
// 输出:newStr = "Hello"
```
阅读全文