Help for this page

Select Code to Download


  1. or download this
    my $line = "abd";
    if ($line =~ /abcd/i) {
    ...
    if ($line =~ /[abcd]/i) {
        print "matched the second case\n";
    }