Help for this page

Select Code to Download


  1. or download this
    $foo = "";
    if ($foo =~ /^[a]*$/) {
        print "Match\n";
    }
    
  2. or download this
    $foo = "1";
    
  3. or download this
    $foo = "1";
    if ($foo =~ /^[a]*/) {
        print "Match\n";
    }