एक स्ट्रिंग में बिंदुओं को बदलने के लिए, आपको डॉट (.) से बचना होगा और replace() का उपयोग करके प्रतिस्थापित करना होगा विधि।
उदाहरण
आप एक स्ट्रिंग में सभी बिंदुओं को बदलने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> </head> <body> <script> var str = 'Demo.Text.with.dots'; document.write("Text with dots- "+str); var res = str.replace(/\./g,' '); document.write("<br>Text without dots- "+res); </script> </body> </html>