在 ruby 的 api 中 Regexp 类提到"&&" ,它举了一个例子
/[a-w&&[^c-g]z]/ === /[abh-w]/
'^c-g'的意思我知道,但是后面的'z'是什么意思呢?(可能我之前说的不清楚,既然# ([a-w] AND ([^c-g] OR z)) 那么应该还能匹配'z',可是下面说和/[abh-w]/等价?这是为什么)
原文如下
If the first character of a character class is a caret (^) the class is inverted: it matches any character except those named.
/[^a-eg-z]/.match('f') #=> #<MatchData "f">
/[a-w&&[^c-g]z]/ # ([a-w] AND ([^c-g] OR z))
This is equivalent to:
/[abh-w]/
麻烦各位能指教一下,谢谢。我估计大家的英文应该不错,就不翻译一遍了:)