G
Guadala Harry
I have a string that must be split out into a string array.
The segment delimiter is like this: {flag:xxx} and the "xxx" part is unknown
ahead of time (can be just about any character AND any number of characters
(at least one).
Here is a valid sample:
string sStartWithThis = "this goes to element one {flag:x} this goes to
element 2 {flag
xedqr} this goes to element 3 {flag
zf} this goes to
element 4.
How can I parse this string into an array of 4 elements? (none include the
{flag:...} delimiter).
Thanks!
The segment delimiter is like this: {flag:xxx} and the "xxx" part is unknown
ahead of time (can be just about any character AND any number of characters
(at least one).
Here is a valid sample:
string sStartWithThis = "this goes to element one {flag:x} this goes to
element 2 {flag


element 4.
How can I parse this string into an array of 4 elements? (none include the
{flag:...} delimiter).
Thanks!