Hello everyone,
While doing self practice on UseCae-1 from AlexKo's Tool Mastery | Cross Tab, I did parsed the delimited string using a RegEx, although my RegEx produced an extra column holding the parsed delimiter with spaces but the expression worked fine and just needed to delete the extra column with Select Tool.
Sample of the input data
As you can see from the snapshot that the (-) exist as delimiter and also part of the name, so I wrote the below RegEx
(\u*)((?:\s[-]\s)|(?:[-]\s))(.*)
My question is what is a cleaner way to write the expression? I am new to RegEx and hope to get more experience to use this powerful tool.
Thanks for the help.
AliAS