is there a method for adding a character to a string?
843785Nov 13 2008 — edited Nov 13 2008Hello,
is there a String method to add a Char to a String given the character number on the string?
EXAMPLE:
String text = "hello world"
I'd like to add a comma after the the 'o' (4th character) so I that text reads: "hello, world"
is there something like:
text.addChar(Char, position in string) ?