📌  相关文章
📜  如何检查javascript代码示例中的特殊字符

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

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