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. : charAt « String « Flash / Flex / ActionScript






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

1.Retrieving One Character at a Time
2.Use of a for loop to loop through the characters of a string, one at a time