How to break up the string into smaller strings.
I am using VB
I have the following string which I want to break it up on <br/>
Dim s As String "cat dog <br/> red green <br/> car box <br/> "
Than I have used a split method
Dim s1Temp() As String = s.Split("<br/>")
** current Output: - wrong**
"cat dog"
"br/> red green"
"br> car box"
**I want the following outPut: - correct **
"cat dog"
"red green"
"car box"
any idea why I am getting the wrong output?