Help for this page

Select Code to Download


  1. or download this
    my $match = quotemeta('tftp>');
    if ($str =~ /$match/) { 
     ...
    }
    
  2. or download this
    my $match = 'tftp>';
    if ($str =~ /\Q$match\E/) {
      ...
    }
    
  3. or download this
    if ($str =~ /\Qtftp>\E/) {
       ...
    }