Home >Web Front-end >HTML Tutorial >What is the JavaScript RegExp to find any alternative text?
To match any of the specified alternatives, please follow the pattern given below −
(foo|bar|baz)
You can try running the following code to find any alternative text −
<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>
The above is the detailed content of What is the JavaScript RegExp to find any alternative text?. For more information, please follow other related articles on the PHP Chinese website!