replace word with other word string typescript code example
Example 1: replace string in typescript
var re = /apples/gi;
var str = "Apples are round, and apples are juicy.";
var newstr = str.replace(re, "oranges");
console.log(newstr)
Example 2: replace all javascript
str.split(search).join(replacement);