Javascript replace

Javascript is a scripting or programming language of the web. Strings are an important part of the variables in any programming language. We often need to manipulate or extract some specific string according to our needs. You must have seen it often at a lot of websites that on a click of a button or something the text got changed. How can we find and replace some specific words in a long paragraph in javascript? Do we have to change all the code? Of course not, we have a replace() method in javascript to replace the substring with a new provided string. So, let’s take a look at what is a string and how can we replace a substring with another string.

The string is a simple text or characters which can include the alphabets, numbers, or symbols.

Javascript’s replace() method finds the provided substring and change/replace that substring with a new provided string.

Syntax

Syntax for the replace() method is

string.replace(substring, newstring);

substring can be any value from the string to which we want to replace

newstring is the value that replaces the substring(first parameter).

Examples

Now, if we take a look at some examples. We suppose a string “Linuxhint is great and linuxhint is working great.”. In this string, I have repeated the same word “great” and “linuxhint” intentionally. The purpose of this will be right in front of you in a moment. Now, let’s try to replace the word “great” with let’s say “awesome” using the replace() method.

linux.replace("great", "awesome");

Here you can see the problem that the first occurrence of “great” gets replaced. But, the second one doesn’t. So, here comes the concept of the regular expression. We can also give the regular expression instead of the substring to the replace() method.

So let’s modify the syntax a little bit that we can give regular expression as well.

string.replace(substring|regex, newstring);

regex is a regular expression object. The matches will be replaced by the newstring.

If we want to replace every single occurrence of the word “great” then we shall pass the regular expression with a ‘g’ flag, which is a short form for global. Take a look below to get an idea about what exactly I mean.

linux.replace(/great/g, "awesome");

Perfect, all the occurrences of “great” are changed. But, now we may face a problem if we try to change all the occurrences of “linuxhint” to let’s say “our website” using the same technique. Let’s try to do that first, then we will see how can we resolve that.

linux.replace(/linuxhint/g, "our website");

As you can see that. Although we have provided the global flag with the regular expression. But, the first occurrence doesn’t get changed. This is because of case-sensitivity. So, we need to provide a case-insensitivity flag ‘i’. We can do that by simply adding the ‘i’ flag along with the ‘g’ flag. Like,

linux.replace(/linuxhint/gi, "our website");

Great. As you can see that all the occurrences of “linuxhint” are changed regardless of the case-sensitivity.

Pro tip

We have two protips for you. One is that we can give multiple substrings in a regular expression as well using the OR “|” operator. The second one is that we can also provide a function instead of the newstring. So, the final syntax that you should take with you is

string.replace(substring|regex, newstring|function);

Let’s have a look at an example. To understand how it works.

In this example, we will change/replace both “great” & “linuxhint” using a single replace method and later we will provide some tasks to do in a function, in which we will change the matches to the uppercase.

linux.replace(/great|linuxhint/gi, (m)=>{return m.toUpperCase()});

Alright! As you can see that both of the words “great” & “linuxhint” are converted into the uppercase letters, successfully.

Conclusion

In this article, we have learned that how can we use the replace() method to replace the substring and how can we use the regular expression to give multiple values along with the global and case insensitive flag. I hope this article has helped you to thoroughly understand the replace() method. So, keep on learning javascript with linuxhint.com.

 



from Linux Hint https://ift.tt/318fuZa

Post a Comment

0 Comments