지정된 대안과 일치시키려면 아래 주어진 패턴을 따르십시오 -
(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>