Assume any of the following strings were possible with ##, ?? and :: being delimiters...
test1 = 'Foo##Bar'
test2 = 'Foo Bar??Baz Mumbe'
test3 = 'SomeFoo::Some Bar'
test4 = 'Foo Bar Baz'
Now, I'd like to...
- know if any of ##, ?? or :: match and if they do, which one
- capture whatever is before and after the delimiter
String manupilation works, but just looks way too complicated.