Help for this page

Select Code to Download


  1. or download this
    my $line = "Iff bla blabla bla...";
    if ($line =~ /^If?/)
    ...
        print "catch you !!\n";
    }
    else{print "didn't catch you !!\n";}
    
  2. or download this
    my $line = "If bla blabla bla...";
    if ($line =~ /^If?/)
    ...
        print "catch you !!\n";
    }
    else{print "didn't catch you !!\n";}