Help for this page

Select Code to Download


  1. or download this
    my $runs = $str =~ /([A-Z]+)/g;
    
  2. or download this
    my $runs = $str =~ /([A-Z]+\d*)/g;
    
  3. or download this
    my @runs = $str =~ /".*?\\([^\\"]*)"[^"]*"[^A-Z]*((?:(?! size).)+)/g;