जावास्क्रिप्ट में RegExp का उपयोग करके स्ट्रिंग को बदलने के लिए, स्ट्रिंग रिप्लेस () विधि का उपयोग करें।
उदाहरण
आप 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>