C# Split() 多个条件
时间: 2023-07-12 22:48:07 浏览: 214
C# split函数
4星 · 用户满意度95%
在 C# 中,可以使用 Split() 方法来将字符串分割成一个字符串数组,可以使用多个条件进行分割。具体实现方式如下:
```csharp
string str = "Hello|World;This,Is.a-Test";
string[] separators = { "|", ";", ",", "." };
string[] result = str.Split(separators, StringSplitOptions.RemoveEmptyEntries);
foreach (string s in result)
{
Console.WriteLine(s);
}
```
在上述代码中,我们定义了一个字符串变量 `str`,并定义了一个字符串数组 `separators`,其中包含多个分隔符。然后使用 Split() 方法将 `str` 字符串按照 `separators` 数组中的分隔符进行分割,最终得到一个字符串数组 `result`。最后使用 foreach 循环遍历 `result` 数组,输出分割后的每个字符串。
以上代码输出结果为:
```
Hello
World
This
Is
a
Test
```
阅读全文