\$\begingroup\$
\$\endgroup\$
I would like to replace the string "The quick brown fox jumps over the lazy dog" with the string "The1 quick2 brown3 fox4 jumps5 over6 the7 lazy8 dog9".
Is there an cleaner, more elegant, sexier way?
String.prototype.concatWordNumber = function() {
var myArray = this.split(' ');
var myString = "";
for (var i=0, len = myArray.length; i<len; i++)
{
myString += myArray[i]+[i+1]+ " " ;
}
return myString;
}
var text = "The quick brown fox jumps over the lazy dog";
console.log(text.concatWordNumber());
asked Jan 20, 2014 at 23:20
1 Answer 1
\$\begingroup\$
\$\endgroup\$
1
Is there an cleaner, more elegant, sexier way?
I guess regex makes it more elegant and sexier, but your implementation is fine:
String.prototype.concatWordNumber = function() {
var i = 1;
return this.replace(/\b\w+\b/g, function(word) {
return word + i++;
});
};
Or you could use map
:
String.prototype.concatWordNumber = function() {
var plusIdx = function(x,i) {
return x + ++i;
};
return this.split(' ').map(plusIdx).join(' ');
};
answered Jan 20, 2014 at 23:26
-
\$\begingroup\$
"the quick brown fox "
returns"the1 quick2 brown3 fox4 5 6"
. Maybereturn x.trim() ? x + ++i : x;
would fix it? But maybe its not worth it. \$\endgroup\$James Khoury– James Khoury2014年01月21日 00:10:28 +00:00Commented Jan 21, 2014 at 0:10
default