Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะแทนที่สตริงที่เกิดขึ้นทั้งหมดใน JavaScript ได้อย่างไร?


ในการแทนที่การเกิดขึ้นของสตริงใน 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>