How do I remove the " and ” characters?

Hi,

If you already know character code (unicode) to be removed, the following will work.

System.Text.RegularExpressions.Regex.Replace(yourString,"[\u0022\u0094]+$","")

Regards,

1 Like