How to remove "€" from string

Hi,

You can use replace method:

In_strNetTotal.Replace("€", "")
Will return the string without the “€”

Regards

2 Likes