Hi,
What is the best way to extract the "0018" into a separate column? The 4 digits are in string format.
CORPORATE*GLOBALGR&PP - Dept # 0018 - 195500432069
I initially tried to do a text to column approaching using the delimiter " - ", but some values within the field had more than 2 delimiters. I am assuming that the best way is to use the RegEx tool, but I'm not quite sure what the expression is and how to configure it to achieve my desired result. Can anyone please assist? Thank you!
Solved! Go to Solution.
Regex - with parse setting:
pattern:
.*#\s(\d{4}).*
assumes that the code is always 4 digits that follow # space
Thank you @ed_hayter !