Help for this page

Select Code to Download


  1. or download this
    my ($key, $val) = 'MYKEY=MYVAL=2' =~ /^([^=]*)=(.*)/s;
    my ($key, $val) = split m{=(?=.*=)}, q{MYKEY=MYVAL=2};
    
  2. or download this
    use strict;
    use warnings;
    ...
          Match => $rsMatch,
          Split => $rsSplit
       });
    
  3. or download this
             Rate Split Match
    Split 26064/s    --   -8%
    Match 28250/s    8%    --