I have raw data in the format:
<&70><+><&10><+>.002<&70><+>B<&70><+>A<+><&90>
I would like to use VB to extract the contexts between < and > and store them in an array, such as {&70,+,&10,+, ... }
Then I would like to do the same for the items NOT between the brackets, also storing in an array like {.002, B, A}
Does anyone know how I can do this using regex?
<.+?>. I don't know regex syntax in VB so can't offer much more right now.