vb.net Strings.Split指定多个字符进行分割字符串多种方法
时间: 2024-02-11 21:10:01 浏览: 232
在 VB.NET 中,可以使用 Strings.Split 方法来将字符串分割成一个字符串数组。可以指定一个或多个分隔符来分割字符串。下面是几种指定多个字符进行分割字符串的方法:
1. 使用 String 类的 Split 方法,并传递一个字符数组作为分隔符参数。例如:
```
Dim str As String = "Hello,World|How are you?"
Dim separators() As Char = {","c, "|"c}
Dim result() As String = str.Split(separators, StringSplitOptions.RemoveEmptyEntries)
```
2. 使用 Regex 类的 Split 方法,并传递一个正则表达式作为分隔符参数。例如:
```
Dim str As String = "Hello,World|How are you?"
Dim pattern As String = "[,|]"
Dim result() As String = Regex.Split(str, pattern)
```
3. 使用 LINQ 查询语句和 String 类的 Split 方法结合起来,以逗号和竖线作为分隔符。例如:
```
Dim str As String = "Hello,World|How are you?"
Dim result() As String = str.Split(","c, "|"c).Select(Function(s) s.Trim()).ToArray()
```
以上是三种常见的方法,可以根据具体情况来选择使用。
阅读全文