开发者

Split String in VB.net

How do I split a string "99 Stack Overflow" 开发者_Go百科into 2 in vb.net

I want the first value to be 99 and the 2nd to be Stack Overflow.

Please help


This should do it:

result = yourstring.Split(new Char() { " "c}, 2)

More here. (I think that's how you write a literal Char array in VB.Net; I'm not much of a VB.Net guy, most of what I do in .Net is in C#.

If I'm wrong about how you right literal char arrays and you can't figure it out, you can use a version of it that takes a String instead:

result = yourstring.Split(" ", 2, StringSplitOptions.None)

Details on that one here.


Assuming you mean numbers, then a space, then more text, you could use a regular expression to do that.

Dim input As String = "99 Stack Overflow"
Dim re As New Regex("^(\d+) (.+)$")
Dim m As Match = re.Match(input)
Dim firstPart As String
Dim secondPart As String
If m.Success AndAlso m.Groups.Count = 3 Then
    firstPart = m.Groups(1).ToString()
    secondPart = m.Groups(2).ToString()
Else
    'Do something useful'
End If

If you just mean text, a space, and more text, regex is overkill and T.J. Crowder's suggestion is better.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜