本文介绍了用两个单引号替换单引号的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我遇到了一个问题,我认为这是因为需要对字符串中的一些单引号加倍。但是,JS的string.replace使用RegEx,我从来没有手工构建RegEx。
I'm running into an issue that I think is being caused by needing to double-up on some single quotes inside a string. However, JS's string.replace uses RegEx, and I've never built a RegEx by hand.
有人可以帮我构建一个RegEx来查找单引号并替换它有两个单引号?
Can someone help me build a RegEx to find a single quote and replace it with two single quotes?
推荐答案
试试这个:
yourstring = yourstring.replace(/'/g, "''")
这篇关于用两个单引号替换单引号的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!