Help for this page

Select Code to Download


  1. or download this
    next if $file =~ /^\/?$location/;
    
  2. or download this
    my $s1  = "abc";
    my $s2  = "/abc";
    ...
    print "OK2\n" if $all =~ /^$s2/;
    print "OK3\n" if $all =~ /^\/?$s1/;
    print "OK4\n" if $all =~ /^\/?$s2/;