开发者

Replace Both Double and Single Quotes in Javascript String

开发者 https://www.devze.com 2023-04-13 01:32 出处:网络
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开发者_如何学JAVA me problems later and

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开发者_如何学JAVA 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.


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, "")

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号