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 would do both operations at the same time in a global search.
If group 1 matched, push into bracket array,
if group 2 matched, push into non-bracket array.