Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    if( @array ~~ m/tried/p ) {
        say ${^PREMATCH} . ${^MATCH} . ${^POSTMATCH};
    }
    
  2. or download this
    Third tried another.