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 have 2 vars and need to insert b into a at this position. The result I'm looking for is "I want an apple". How can I do this with jquery or javascript?

var a = "I want apple";
var b = "an";
var position = 6;
share|improve this question

4 Answers

up vote 23 down vote accepted
var output = [a.slice(0, position), b, a.slice(position)].join('');
share|improve this answer
1  
For long strings, this solution is faster (because it copies less) than nickf's solution. – pts Dec 6 '10 at 9:47
var output = a.substr(0, position) + b + a.substr(position);
share|improve this answer

Well just a small change 'cause the above solution outputs

"I want anapple"

instead of

"I want an apple"

To get the output as

"I want an apple"

use the following modified code

var output = a.substr(0, position) + " " + b + a.substr(position);
share|improve this answer
5  
yes, it's probably not desirable in this case, but adding an extra space automatically is almost definitely not desirable in all cases. – nickf Dec 6 '10 at 9:35
2  
Wouldn't the correct solutions be to add the spaces in the string = ' an ', this way you can reuse the function – Tosh Jan 7 at 10:35
var array = a.split(' '); 
array.splice(position, 0, b);
var output = array.join(' ');

This would be slower, but will take care of the addition of space before and after the an Also, you'll have to change the value of position ( to 2, it's more intuitive now)

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.