Remove the comma in the string

Hi all,

I got this Sting “Mason/MY/HK,” and would like to remove the comma in this string. I tried TEXT.trim(","c) but failed.

Can anyone knows how do that? thx

@mason_wong

Try as below

TEXT.Replace(“,”, “”)

Mark as solution if this helps

Thanks

1 Like