Computer >> Máy Tính >  >> Lập trình >> Javascript

JavaScript RegExp để tìm bất kỳ văn bản thay thế nào là gì?


Để khớp với bất kỳ lựa chọn thay thế nào được chỉ định, hãy làm theo mẫu cho sẵn bên dưới -

(foo|bar|baz)

Ví dụ

Bạn có thể thử chạy đoạn mã sau để tìm bất kỳ văn bản thay thế nào -

<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>