Help for this page

Select Code to Download


  1. or download this
      $word = '\w+';
      $path = '(?:/$word)+';
    
  2. or download this
      $pattern = '(?:$path|$word|$number|$operator)';
    
  3. or download this
      my @tokenList = ();
    
      while($data =~ /($pattern)/g) { push (@tokenList, $1); }