(*) quantifier matches zero or more times:
package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ trace("a thousand thousandss!".match(/thousands*/g)); //thousand,thousandss } } }