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;
|
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?
|
|||
|
|
|
|||||
|
|
Well just a small change 'cause the above solution outputs
instead of
To get the output as
use the following modified code
|
||||
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) |
|||
|
|