public function __construct($min = 0, $capturing = false)
 {
     $count = "*";
     if ($min) {
         $count = '{' . $min . ',}';
     }
     parent::__construct("\\s{$count}", 'ms', $capturing);
 }