Flash / Flex / ActionScript/String/Compare — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 09:19, 26 мая 2010
Convert string to lowercase then compare
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var example:String = "Cool. This is a cool as both cool (lowercase) and Cool.";
var search:String = "cool";
trace( example.toLowerCase( ).indexOf( search ) );
}
}
}