Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 9thHouse

    Something is wrong with my Loop.

    Wonderful, thanks a lot.
  2. 9thHouse

    Something is wrong with my Loop.

    I will simplify my code open(my $in, '<:raw', $filename) || die "Couldn't openfile:$!"; my $text = do { local $/; <$in> }; close $in; my $content = decode('UTF-16LE', $text); #print $content; if ($content =~ (m/$search_pattern/gi)) { print...
  3. 9thHouse

    Something is wrong with my Loop.

    Hi all, I have been given a task to search for strings in a file that is encoded. I need to display the file name only when all the 3 strings which i provide are present in the file name. i first try to get a list of files according from the directory according to the value passed in argument...

Part and Inventory Search

Back
Top