Hi,
I have values like
ACC.BBB.TM
C.QMM.UZZ
DH.QPP.Z
I require the data like
ACCBBB.TM
CQMM.UZZ
DHQPP.Z
No extra periods in between..
Thanks in advance for the solution
Solved! Go to Solution.
Hi @Adarsh_R
In your example, you can use the ReplaceFirst function to get the job done.
I've attached an example workflow.
Jacob
Another RegEx option:
REGEX_Replace([your_field], "\.(?=.*\.)", "")
Chris
Thanks, Chris and everyone for your help...