c# split
时间: 2023-06-29 13:05:31 浏览: 95
c# split分隔字符串使用方法
5星 · 资源好评率100%
C# 中的 `Split` 方法可以用于将字符串按照指定的字符或字符串进行分割,返回一个字符串数组。具体用法如下:
```csharp
string str = "hello,world";
string[] arr = str.Split(','); // 按照逗号分割字符串
// arr 现在为 ["hello", "world"]
```
还可以指定多个分割字符或字符串,例如:
```csharp
string str = "hello world|this is a test";
string[] arr = str.Split(new char[] { ' ', '|' }); // 按照空格和竖线分割字符串
// arr 现在为 ["hello", "world", "this", "is", "a", "test"]
```
还可以指定分割的最大次数,例如:
```csharp
string str = "hello world this is a test";
string[] arr = str.Split(new char[] { ' ' }, 2); // 最多分割 2 次,即将字符串分为两个元素
// arr 现在为 ["hello", "world this is a test"]
```
阅读全文