negated character sets 。要创建negated character set ,请在caret括号后面和不想匹配的字符前放置一个caret ( ^ )。例如, /[^aeiou]/gi匹配所有不是元音的字符。请注意字符之类的. , ! , [ , @ , /和空格匹配 - 否定元音字符集仅排除元音字符。 myRegex应匹配9项。
testString: assert(result.length == 9);
- text: 你的正则表达式myRegex应该使用全局标志。
testString: assert(myRegex.flags.match(/g/).length == 1);
- text: 你的正则表达式myRegex应该使用不区分大小写的标志。
testString: assert(myRegex.flags.match(/i/).length == 1);
```