📅  最后修改于: 2022-03-11 15:02:27.395000             🧑  作者: Mango
var format = /[ `!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?~]/;
// ^ ^
document.write(format.test("My@string-with(some%text)") + "
");
document.write(format.test("My string with spaces") + "
");
document.write(format.test("MyStringContainingNoSpecialChars"));