Help for this page

Select Code to Download


  1. or download this
    /(?: (\d+) | (?:"(.+?)")  ) /gx
         ^           ^
         |           |
    
  2. or download this
    sub dequote {
        my ($s) = @_;
    ...
    
    push @matches, defined($1) ? $1 : dequote($2)
       while /(?: (\d+) | (?:"(.+?)")  ) /gx;