How do I split a string “99 Stack Overflow” into 2 in vb.net
I want the first value to be 99 and the 2nd to be Stack Overflow.
Please help
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This should do it:
More here. (I think that’s how you write a literal
Chararray 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:
Details on that one here.