Help for this page

Select Code to Download


  1. or download this
      my $re = qr/
        (?:      # start non-capturing group
    ...
        ){5}     # and ensure there are 5 such groups in a row
        ([^\|]+) # capture as many non-pipe chars as possible
      /x;
    
  2. or download this
               Rate oldway newway
    oldway 108225/s     --   -81%
    newway 563910/s   421%     --