Help for this page

Select Code to Download


  1. or download this
    my $str = "this is a test";</p>
    my $sub = "is a test";
    if ($str =~ /\b$sub\b/) {
        
        print "match at char ",@-[0], "\n";
    }