I am trying to use the Regex tool to parse data between two semicolons.
My data looks like this
I am trying to get it to look like this
How do I configure the Regex tool to do so?
Hi @krichardson29
You can use the expression: ;([^;]*);([^;]*); when parsing.
Each of the two groups are "any non semi-colon" within the string.
See Attached.
Best,
Michael
Don't you prefer the Text-to-column tool for this?
Typically I would, it is much easier to get it to work.
In this case I assumed that there were other reasons that the regex tool was already being used.