📜  js 转义字符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:14.791000             🧑  作者: Mango

代码示例2
var format = /[ `!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?~]/;
//            ^                                       ^   
document.write(format.test("My@string-with(some%text)") + "
"); document.write(format.test("My string with spaces") + "
"); document.write(format.test("MyStringContainingNoSpecialChars"));