I have a column containing rows of the following format:
Cycle=12_Fc 3-1_Y
Cycle=13_Fc 3-1_Y
Cycle=15_Fc 3-1_Y
…
I would like to automatically extract “12” (cycle number) and “3-1” and create 2 new columns with these values.
It looks like the Regex Split node should work but I am not familiar with the synthax.
Thank you in advance for your help!
Delphine
If you instead need to split by delimiter, you could use the Cell Splitter node to split on underscores and/or spaces, and then do some string manipulation afterward. This would be a bit messy, but then, so is Regex, right?