Assuming a string like Foo: Some Text Bar: Some Other Text FooBar: Even More Text and a goal to have it split into:
Foo: Some Text
Bar: Some Other Text
FooBar: Even More Text
I can't figure out the Regex for it at all. I can split it based on the words I want like (Foo:)|(Bar:)|(FooBar:) but I can't figure out how to include from the beginning of each group to the beginning of the next group (or end of text if last group).