56

I am pulling in some information from a database that contains dimensions with both ' and " to denote feet and inches. Those characters being in my string cause me problems later and I need to replace all of the single and double quotes. I can successfully get rid of one or the other by doing:

this.Vals.replace(/\'/g, "")   To get rid of single quotes

or

this.Vals.replace(/\"/g, "")   To get rid of double quotes

How do I get rid of both of these in the same string. I've tried just doing

this.Vals.replace(/\"'/g, "")

and

this.Vals.replace(/\"\'/g, "")

But then neither get replaced.

jmease
  • 2,507
  • 5
  • 49
  • 89

4 Answers4

128

You don't escape quotes in regular expressions

this.Vals.replace(/["']/g, "")
Joe
  • 80,724
  • 18
  • 127
  • 145
15
mystring = mystring.replace(/["']/g, "");
Danny
  • 7,368
  • 8
  • 46
  • 70
5

You don't need to escape it inside. You can use the | character to delimit searches.

"\"foo\"\'bar\'".replace(/("|')/g, "")
Alex Turpin
  • 46,743
  • 23
  • 113
  • 145
4

Try this.Vals.replace(/("|')/g, "")

deviousdodo
  • 9,177
  • 2
  • 29
  • 34