What is the opposite of String.charAt()??
String.charAt()
If I Have a string:
var Str:String=\"Hello World\";
How do I change the 5th chara
//Replacing "/" with "-" var str:String = "he/ll/o" str = str.split("/").join("-"); //str = he-ll-o