I have a string like the following:
HELLO: blah blah WORLD: woo woo FOO: foo foo
I need to split this string into 3 strings e.g.
HELLO: blah blah
WORLD: woo woo
FOO: foo foo
I tried to find pattern around the [:] but didn't help a lot.
Thank you.
P.S. C# or VB.NET code it's irrelevant to me. Both of these will work for me. Thx again