I am trying to extract text from a string and a not sure how to use this. The string is below and I want to extract “DynamicNewUnlmtd” from this and put it in a new column.
CU@A_MG@0R_OT@DynamicNewUnlmtd_CM@A03_CV@AO_TA@0_IM@NA_LG@E_OB@15_AI@YVAC7226000_FF@N
@ tom_montpool Is there a better way of extracting this data using regex instead of suing delimnitators?
Solved! Go to Solution.
It looks like you have some very consistent patterns within your text. I can see some possible options for parsing:
You can see "DynamicNewUnlmtd” has been parsed into column 3
If you want to test more Regex my favorite is regex101.
Flow:
Result 2:
Regex 2:
Hi Josh,
This is awesome. I was doing text to column and further cleaning it up. Regex is the new thing i need to learn. Thanks a ton!
This has made my life super easy! Definately gonna do that 101
Best,
Soumya