Help for this page

Select Code to Download


  1. or download this
    sub find_string {
        my ($file, $string) = @_;
    ...
    
        find_string('search.txt', 'name: abc ');
    }
    
  2. or download this
    sub find_string {
        my ($file, $string) = @_;
    ...
    
        return $text =~ /\Q$string/;
    }