Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have an Input Field in my tMap that has dollar values like $1,000 $10,000 etc. I need to remove the commas and $ sign so the value is just 1000 or 10000.
How would I do this in a tMap Expression. Currently I have the String Method that will remove the $ sign but not the comma. How can I adjust this string method to not include commas in the output.
row1.GiftAmount.replaceAll("[^\\d\\.\\,\\s]+", "")
Please Advise
Thanks,
Andrew