我知道 a.
是匹配正则表达式中的任何字符,但我对这些结果有点困惑,希望有人能解释一下:
".".match("[+-\/]") //matches
".".match("[+\-\/]") //matches
".".match("[+\/]") //null
".".match("[\+\/]") //null
".".match("[-\/]") //null
".".match("[+-]") //null
是什么让+-\/
JS 变得“是的,这看起来像一个句号。”有什么神奇之处?