哪个 JavaScript RegExp 可查找任何备选文本?
要匹配任何指定选项,请遵循以下给定的模式 -
(foo|bar|baz)
示例
你可以尝试运行以下代码查找任何备选文本 -
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "one,one,one, two, three, four, four"; var reg = /(one|two|three)/g; var match = myStr.match(reg); document.write(match); </script> </body> </html>
广告