JavaScript String replace()


replace() method किसी String में दी गयी value / regular expression को search करके specified value से replace करके new String return करता है। हालांकि इससे Original String में कोई changes नहीं आते हैं।

JavaScript String replace Syntax

string.replace(searchValue: string, replaceValue: string);
  1. string | required : यह String variable है जिसमे हमें value को search करना है।

  2. searchValue | required : value जो String में search करनी है।

  3. replaceValue | required : value जो String में replace करनी है।

  4. Return Value : यह method एक new String return करता है , जहाँ search की गयी value को replaced / new value से replace कर दिया जाता है।

JavaScript String replace Example

File : js_string_replace.html

CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <body>
    <script>
      let str = "Visit google.com to learn PHP , JavaScript , jQuery etc.";
      document.write(str.replace("google.com", "learnhindituts.com"));
      document.write("<br> Original String : " + str);
    </script>
  </body>
</html>
Output
Visit learnhindituts.com to learn PHP , JavaScript , jQuery etc.
Original String : Visit google.com to learn PHP , JavaScript , jQuery etc. 

Important :

  1. अगर search value String में नहीं मिलती तो original string ही return होती है।

  2. empty String के लिए replace() method call करने पर कुछ भी return नहीं होता है।

  3. replace value provide न करने पर undefined से replace हो जाता है।

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook