ในการแทนที่การเกิดขึ้นของสตริงใน JavaScript ให้ใช้วิธีแทนที่ () -
<html> <body> <script> var str1 = 'John loves studying. He loves Football too!'; var str2 = str1.replace(/loves/g, "likes"); document.write(str2); </script> </body> </html>
ในการแทนที่การเกิดขึ้นของสตริงใน JavaScript ให้ใช้วิธีแทนที่ () -
<html> <body> <script> var str1 = 'John loves studying. He loves Football too!'; var str2 = str1.replace(/loves/g, "likes"); document.write(str2); </script> </body> </html>