Hi, I’m trying a tokenize a text with delimiters using “Extract with Regex”.
The delimiters are: new line \n, and numbered lists d+. (e.g. ‘1.’, ‘2.’, ‘3.’, etc.)
There is a variable number of tokens.
I don’t want the delimiters returned.
How should I write my regex? Or is there any other solution for doing such a simple string tokenizing operation?
Thanks…
Example:
Zero
1. One
2. Two 3. Three
Should return a list “Zero”, “One”, “Two”, “Three”