Get the length of a string object : String length « String « Flash / Flex / ActionScript






Get the length of a string object

 
package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var sTitle:String = new String("ActionScript Bible");
        
        trace(sTitle.length);  // Displays: 18

    }
  }
}

        








Related examples in the same category

1.Determining the Number of Characters