Help for this page

Select Code to Download


  1. or download this
    { my $a = "MIN.(NERR_VOL2)";
      my $b = $a;
      print "matches" if $a =~ m/$b/;
    }
    
  2. or download this
    { my $a = "MIN.(NERR_VOL2)";
      my $b = $a;
      print "equals" if $a eq $b;
    }