Flash / Flex / ActionScript/Development/group — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:15, 26 мая 2010
create your own groups of character classes: place the letters that you want to match inside square brackets
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
trace("the cat sat on the mat".match(/[msc]at/g)); //cat,sat,mat
}
}
}