Hi friend
I have string like "My name is pash --> My brother name is suresh".
now i want split "-->" charcter from string.
can anyone tel me how to do that.
thaks
pash
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gomathi PalaniswamyPosted Sep 22, 2010, 12:28 AM
Sam HobbsPosted Sep 21, 2010, 9:33 PM
Hirendra SisodiyaPosted Sep 21, 2010, 3:33 AM
Hello prasant
you can try like this
Dim str As String = "My name is pash --> My brother name is suresh"
Dim strArray() As String = Str.Split("-->")
thanks