JavaScript正则表达式 – [^...] 描述 [^…]检查方括号中的任何一个字符是否不在被搜索的字符串中。 例子 以下示例展示了正则表达式的使用。 <html> <head> <title>JavaScript正则表达式</title> </head> <body> <script type = "text/javascript"> var str = "first"; var pattern = /[^abcde]/g; var result = str.match(pattern); document.write("测试1的返回值为:" + result); str = "second"; result = str.match(pattern); document.write("<br/>测试2的返回值为:" + result); </script> </body> </html> HTMLCopy 输出 测试1的返回值为:f,i,r,s,t 测试2的返回值为:s,o,n HTMLCopy