Hello All,
I want to search through a text file for a supplied pattern and if it exists -> do nothing. If not -> add the the text to the file.
The code I am using is:
$tempName= $query->param('searchText'); #user supplied
open (FILE, "+>>filename");
@file = <FILE>;
$temp = join('',@file);
$temp =~ /$tempName/s;
if ($temp eq '')
{
print FILE $tempName . "\n";
}
close (FILE);
The format of the text in the file to be searched is like:
/home/Ireland/amu/amutest/automated.abc
My problem is that the searchText is always added to the file as the search never seems to find anything.
Follow-up query:
For testing purposes I am only searching for "auto" but in the completed program I will be searching for the entire path. Will the inclusion of "/" in the search cause more problems, e.g. In the above code $tempName could be
$tempName = /home/Ireland/amu/amutest/manual.abc
Thanks
AM
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.