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