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 proble
You don't escape quotes in regular expressions
this.Vals.replace(/["']/g, "")
mystring = mystring.replace(/["']/g, "");
You don't need to escape it inside. You can use the |
character to delimit searches.
"\"foo\"\'bar\'".replace(/("|')/g, "")
Try this.Vals.replace(/("|')/g, "")