I have searched the site before asking but none of the solution I've found make sense with my problem.
Firstly I have a string which is something like:
Dim someString As String = "<object>sometext</object><object>sometext</object><object>sometext</object>"
I am trying to get it split into an array of string like so:
stringArray 0 --> "<object>sometext</object>"
stringArray 1 --> "<object>sometext</object>"
stringArray 2 --> "<object>sometext</object>"
The methods I have tried for splitting the text remove the delimiter from the result which is not what I want since it then invalidates the code.