[^]匹配不属于其中的任意一个
2020-11-23 本文已影响0人
一土二月鸟
/[^abc]/.test('a') // false
/[^abc]/.test('ad') // true 只要有一个字母不属于正则表达式,则为true
"abc".match(/[^b]/g) // ["a", "c"]
/[^abc]/.test('a') // false
/[^abc]/.test('ad') // true 只要有一个字母不属于正则表达式,则为true
"abc".match(/[^b]/g) // ["a", "c"]