Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to replace text using Javascript. It's a little different than the other ones I've seen on S.O. because the text that needs to be added in is an incrementing integer.

For example: Replace the string: "John Mary Ellen Josh Adam" with "John1 Mary2 Ellen3 Josh4 Adam5"

share|improve this question
So what precisely do you want to do? Append a number to each word, where "word" is defined as consecutive alphabetical characters, separated by white spaces? – Felix Kling Mar 21 '12 at 14:24
What have you tried? – Andrew Mar 21 '12 at 14:25
how you know you have to add the integer.. if there is a space can you add it. What is the condition tocheck – zod Mar 21 '12 at 14:25

6 Answers

up vote 6 down vote accepted

Use a callback replacer:

var str = "John Mary Ellen Josh Adam", i=0;
str = str.replace(/ /g,function(m) {i++; return i+" ";});

EDIT: Noticed that won't add a number after "Adam". That can be fixed just by adding:

i++; str += i;

at the end of the code.

EDIT2: Or all-in-one:

str = str.replace(/ |$/g,function(m) {i++; return i+m[0];});
share|improve this answer
About adding a number after "Adam": you could also adjust the regex to match the end of the string, e.g. str.replace(/ |$/g, .... – robmisio Mar 21 '12 at 14:48
That would add an extra space on the end, though, because of what the function returns. – Kolink Mar 21 '12 at 14:52
I liked this - especially the elegance of it - but felt it better to use the jsfiddle option rather than adding in an extra line of code. Perhaps that's just my inexperience. – user739866 Mar 21 '12 at 14:55
you could also match the words instead of the spaces, see my answer. That way John  Mary (two spaces) yields John1  Mary2, not John1 2 Mary3 – padde Mar 21 '12 at 14:59
Updated without the need for the extra line of code. – Kolink Mar 21 '12 at 15:00

You can do it this way:

var array = string.split(" "), i, j;

for(i=0,j=array.length,string="";i<j;string+=array[i]+(++i)+" ");
share|improve this answer

Use a function with replace:

function appendCount(str) {
    var i = 1;
    return str.replace(/\S+/g, function(backref) {
        return backref + i++;
    })
}
share|improve this answer
var input = "John Mary Ellen Josh Adam";

var i = 0;
var output = input.replace(/\w+/g, function(m){ return m + ++i });

output is:

"John1 Mary2 Ellen3 Josh4 Adam5"
share|improve this answer
Couldn't RegExp.lastMatch be replaced with the 1st parameter passed to the callback? Which is more efficient? – Rocket Hazmat Mar 21 '12 at 14:34
thanks for pointing that out, edited my answer – padde Mar 21 '12 at 14:39

I quickly hacked this up. Not sure how efficient it is, but it works.

var x = 1, str = "John Mary Ellen Josh Adam",
newStr = str.replace(/\b([^\s]*)\b/g, function(i){
    return i && (i + (x++));
});
share|improve this answer

I put together this jsfiddle for you.

This is the code:

var originalStr = "John Mary Ellen Josh Adam";
var splitStr = originalStr.split(' ');
var newStr = "";
for (var i = 0; i < splitStr.length; i++)
    newStr += splitStr[i] + (i+1) + ' ';

alert(newStr);
share|improve this answer
the same answer as mine. – user1150525 Mar 21 '12 at 14:30
2  
Please include the code in your answer as well as some explanation. – Felix Kling Mar 21 '12 at 14:31
This results in a trailing space on the string. – robmisio Mar 21 '12 at 14:56
i agree @robmisio, that shouldn't be happening – padde Mar 21 '12 at 15:02

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.