Hi,I have values like ACC.BBB.TMC.QMM.UZZDH.QPP.ZI require the data likeACCBBB.TMCQMM.UZZDHQPP.ZNo extra periods in between..Thanks in advance for the solution
Hello @Adarsh_R ,
How about this?
Regards
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...