How do I remove the " and ” characters?

Hi
Check this code in assign activity:

Regex.Replace(yourString,"["""+Chr(148)+"]$","")

It should remove both kind of quotation marks only if they are at the ond of the string.