Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如说我有字符串:
var name = 'Mc'Obrian'
我希望能够只转义第一个引号和最后一个引号,而不是名称中使用的引号,我怎样才能在 javascript 中实现这一点?谢谢
使用\转义单引号,如下所示:
\
var name = 'Mc\'Obrian'
或者
var name = "Mc'Obrian"
给定您当前的代码,以下内容将正确转义单引号:
我鼓励您阅读以下有关字符串的教程。如果您对性能考虑感兴趣,请阅读此问题。