Help for this page

Select Code to Download


  1. or download this
    use v5.12;
    
    ...
        next if pos($a) % 4;
        say "Match at ", pos($a), ": ", $1;
    }
    
  2. or download this
    use v5.12;
    
    ...
    {
        say "Match at ", pos($a), ": ", $1;
    }