I understand how to extract a string between 2 DIFFERENT types of strings like [ and ], or ( ), etc...
But what I don't know is how to get multiple/all strings between 1 character. Eg:
the *big* brown fox *jumps over* the *lazy* **dog**
it should return for "*":
big
jumps over
lazy
and it should also return for "**":
dog
All libraries, regex patterns and such don't support such a feature.