REPLACE string jquery code example

Example 1: jquery replace text

$('#id1 p').each(function() {
    var text = $(this).text();
    $(this).text(text.replace('Kate', 'Nef')); 
});

Example 2: javascript replace string

var str = "JavaScript replace method test";
var res = str.replace("test", "success");  
//res = Javscript replace method success

Example 3: replacing characters in string javascript

var myStr = 'this,is,a,test';
var newStr = myStr.replace(/,/g, '-');

console.log( newStr );  // "this-is-a-test"

Example 4: javascript replace

var res = str.replace("find", "replace");

Example 5: replace jquery

$("p:first").replaceWith("Hello world!");

Example 6: jquery text replace

$(".text_div").text(function () {
    return $(this).text().replace("contains", "hello everyone"); 
});