How to use map() & split() method to replace characters from String In Javascript

In this approach, split(‘ ‘) is used to split the string into an array of words. Then, map() is used to iterate over each word in the array. If the word is equal to oldWord, it is replaced with newWord; otherwise, the word remains unchanged. Finally, join(‘ ‘) is used to join the array back into a string

Example: Here we will split the given string “Hello user, welcome to w3wiki” and replace the “Hello” with “Hi”.

Javascript
const str = "Hello user, welcome to w3wiki";
oldWord='Hello';
newWord='Hi'
const replacedString=str.split(' ').map(word => word === oldWord ? newWord : word).join(' ');
console.log(replacedString);

Output
Hi user, welcome to w3wiki

JavaScript Program to Replace Characters of a String

Given a String the task is to replace characters of String with a given String in JavaScript.

Examples:

Input: Str = Welcome to GfG
strRepl = GfG
newStr = Geeks
Output: Welcome to Geeks

Table of Content

  • Using map() & split() method to replace characters from String
  • Using String replace() Method to replace characters from String
  • Using Regular Expression to replace characters from String
  • Using split and join Method to Replace Characters from a String

Similar Reads

Using map() & split() method to replace characters from String

In this approach, split(‘ ‘) is used to split the string into an array of words. Then, map() is used to iterate over each word in the array. If the word is equal to oldWord, it is replaced with newWord; otherwise, the word remains unchanged. Finally, join(‘ ‘) is used to join the array back into a string...

Using String replace() Method to replace characters from String

JavaScript string.replace() method is used to replace a part of the given string with another string or a regular expression. The original string will remain unchanged....

Using Regular Expression to replace characters from String

To replace all occurrences of a string in JavaScript using a regular expression, we can use the regular expression with the global (g) Flag....

Using split and join Method to Replace Characters from a String

In this approach, the split method is used to divide the string into an array of substrings based on the substring we want to replace. Then, the join method is used to combine the array back into a string, with the new substring replacing the old one....

Contact Us