charAt() takes one parameter, a value for an index within the string. This method returns a new one-character string that contains the value of the character at the specified index.
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var sTitle:String = new String("ActionScript");
var sChar:String = sTitle.charAt(0);
}
}
}
Related examples in the same category