Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    foreach my $index (qr/I/, qr/II/, qr/III/) {
        print "Match\n" if $string =~ m/ABC_$index/;
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        print "Match\n" if $string =~ m/$fixed$index/;
    }