length 속성

Flash Player 9 이상, Adobe AIR 1.0 이상

모든 문자열에는 length 속성이 있습니다. 이 속성은 문자열에 있는 문자의 수와 같습니다.

var str:String = "Adobe"; 
trace(str.length);            // output: 5

빈 문자열 및 null 문자열의 길이는 다음 예제와 같이 0입니다.

var str1:String = new String(); 
trace(str1.length);           // output: 0 
 
str2:String = ''; 
trace(str2.length);           // output: 0