I did this so, but only works when file is in one line
# file.txt # one two three four five six seven eight nine ten # zero #!/usr/bin/perl use warnings; open(FILE, "file.txt"); $_ = <FILE>; close(FILE); if ($_ =~ /nine/) { print "found\n" } else { print "not found\n"; }
In reply to Re^2: how to search for a string in a particular file?
by MSPM5
in thread how to search for a string in a particular file?
by tm86
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |