http://www.perlmonks.org?node_id=98391


in reply to how can i search a text file for a string and print every occurence of that string

I normally wouldn't program that by hand. Depending on your operating system I would use a grep variant (on *nix) or find/findstr (on Win). Alternatively you can use the equivalent from the Perl Power Tools .

--Hofmator

  • Comment on Re: how can i search a text file for a string and print every occurence of that string