Help for this page

Select Code to Download


  1. or download this
    my $String="1234A4321";
    my $RegEx="/a/i";
    
  2. or download this
    {
    $String=~/a/i;
    print "Match: ",$&||"none"," Pre: ",$`||"none"," Post: ",$'||"none","\
    +n";
    }
    
  3. or download this
    {
    $String=~$RegEx;
    print "Match: ",$&||"none"," Pre: ",$`||"none"," Post: ",$'||"none","\
    +n";
    ...
     };
     print "Match: ",$&||"none"," Pre: ",$`||"none"," Post: ",$'||"none","
    +\n";
    }