How to remove a special character from a string var

Hi Guys !!

I have a sample string 121,414.34
I have to remove “,” and need “121414.34” as output for comparison purpose.
How can i achieve this ?

Thanks in Advance

stringvar.replace(“,”,“”)

@Sanjit_Pal THANKS :slight_smile:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.