I have a string like this:
var str = "A A A A A";
how do I replace a specific A with something else?
Eg: replace 3rd A to:
var str = "A A 00 A A";
Of the 1st, 2nd, etc.. ?
I have a string like this:
var str = "A A A A A";
how do I replace a specific A with something else?
Eg: replace 3rd A to:
var str = "A A 00 A A";
Of the 1st, 2nd, etc.. ?