Help for this page

Select Code to Download


  1. or download this
    open(my $fh, '<', $inputs)
       or die ...
    ...
    while (<$fh>) { ... }
    
    close($fh);  # Optional.
    
  2. or download this
    if ($line =~ /\Q$string\E/) { ... }
    
  3. or download this
    if ($line eq $string) { ... }