Flash / Flex / ActionScript/String/length — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 09:19, 26 мая 2010
To determine the number of characters a string object contains you can check its length property.
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var bigWord:String = "CONIOSIS";
trace("Number of letters: ", bigWord.length); // Displays: 45
}
}
}