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

Làm cách nào để thay thế chuỗi bằng JavaScript RegExp?


Để thay thế một chuỗi bằng RegExp trong JavaScript, hãy sử dụng phương thức chuỗi Replace ().

Ví dụ

Bạn có thể thử chạy mã sau để thay thế một chuỗi bằng JavaScript RegExp -

<html>
   <head>
      <script>
         var str = "Welcome to Tutorialspoint";
         document.write(str);
         var res = str.replace(/tutorialspoint/i,"Qries");
         document.write("<br>"+res);
      </script>
   </head>
   <body>
   </body>
</html>