Help for this page

Select Code to Download


  1. or download this
    use v5;
    use strict;
    ...
    if ("abc" =~ m/(a)/ ) {
      say "Match: ", $1;
    }
    
  2. or download this
    Match:
    
  3. or download this
    lanx@nc10-ubuntu:~$ perl
    use strict;
    ...
    }
    __END__
    Match: a