Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I replace any string in jquery let's say I have a string "-9o0-9909" and I want to replace it with another string.

share|improve this question
1  
possible duplicate of How to replace a block of HTML with another block of HTML using jQuery before asking a question, it is good to check out the automated suggestions the system makes when entering a question title – Pekka 웃 Feb 3 '11 at 12:49
can you elaborate please on why you think jquery is the way to go - the answers so far might be off track. – Xhalent Feb 3 '11 at 13:02
I can change the text in c# page, javascript and database and html pages, but I was thinking if it's possible to achieve that using jquery after page load. I am trying to save sometime and learn something new :) – Developer Feb 3 '11 at 16:50

4 Answers

up vote 12 down vote accepted

You could use the following to replace the first occurrence of a word within the body of the page:

var replaced = $("body").html().replace('-9o0-9909','The new string');
$("body").html(replaced);

If you wanted to replace all occurrences of a word, you need to use regex and declare it global /g:

var replaced = $("body").html().replace(/-1o9-2202/g,'The ALL new string');
$("body").html(replaced);

If you wanted a one liner:

$("body").html($("body").html().replace(/12345-6789/g,'<b>abcde-fghi</b>'));

You are basically taking all of the HTML within the <body> tags of the page into a string variable, using replace() to find and change the first occurrence of the found string with a new string. Or if you want to find and replace all occurrences of the string introduce a little regex to the mix.

See a demo here - look at the HTML top left to see the original text, the jQuery below, and the output to the bottom right.

share|improve this answer
Code that worked just fine, Thanks scoobler. jQuery(function($) { var replaced = $("body").html().replace(/12212-522-1212/ig,'2121-2121-0000'); $("body").html(replaced); }); – Developer Feb 6 '11 at 22:41
I don't think this is quite effective... we should lookup for a better solution guys! – Tom Roggero Oct 2 '12 at 16:07
$("#elementID").html("another string");

http://api.jquery.com/html/

share|improve this answer
they are not always same id it could be different class name or id name. If I had just 1 class name or id name it wouldn't be hard but it's random most of the time. – Developer Feb 3 '11 at 12:58
So you want to search the entire HTML tree for a string, and replace that? – vicvicvic Feb 3 '11 at 13:00
yes more like that I am thinking – Developer Feb 3 '11 at 13:11

...I have a string "-9o0-9909" and I want to replace it with another string.

The code below will do that.

var str = '-9o0-9909';

str = 'new string';

Jokes aside, replacing text nodes is not trivial with JavaScript.

I've written a post about this: Replacing text with JavaScript.

share|improve this answer
Don't know why your answer wasn't accepted. – Jill-Jênn Vie Aug 6 '12 at 9:45
var replaced = $("body").html().replace(/-1o9-2202/g,'The ALL new string');
$("body").html(replaced);

for variable:

var replaced = $("body").html().replace(new RegExp("-1o9-2202", "igm"),'The ALL new string');
$("body").html(replaced);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.