我的正则表达式是下一个
/^(\.\w*)|(\d*\.?\d*)$/
它应该适用于浮点数(123.23
, 12.
, .56
)和任何以点开头的单词。
当但没有 OR
时我很困惑:
/^(\.\w*)|(\d*\.?\d*)$/.test("qweasdzxc"); // return true
/^(\.\w*)$/.test("qweasdzxc"); // return false
/^(\d*\.?\d*)$/.test("qweasdzxc"); // return false
在RegexPal 上一切正常