我如何使用拆分功能

时间:2013-11-15 02:12:22

标签: vb.net split syntax-error

如何在VB.NET中使用split方法?我试过了:

arr.Split(New Char{','})

但它给了我一个错误。什么是正确的语法?

2 个答案:

答案 0 :(得分:1)

arr.Split(New Char() { ","c })

'开始发表评论。

答案 1 :(得分:0)

试试这个:     Dim ApplyTo As String =“Test1,Test2”     asd = ApplyTo.Split(“,”)     msgbox(asd(0))'打印“Test1”     msgbox.WriteLine(ASD(1))