Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Ignore ALL characters and delete?

by Wonko the sane (Deacon)
on May 13, 2003 at 20:14 UTC ( [id://257884]=note: print w/replies, xml ) Need Help??


in reply to Ignore ALL characters and delete?

The link is not getting deleted because the pattern is never found in the file.
This is because of the meta characters in the link. To make sure that any special meta characters
are escaped in your regex you need the \Q an \E operators.

Try using this as your regex, then the you should be able to find the link.
if ($list =~ /\Q$link\E/i)

Wonko

Replies are listed 'Best First'.
Re: Re: Ignore ALL characters and delete?
by iamrobj (Initiate) on May 13, 2003 at 22:11 UTC
    Worked perfect, thanks Wonko!

    "eq" did not... why is that?

      The /i modifier makes the pattern match case-insensitive. To get the same effect with eq, you can do something like: if (uc($list) eq uc($link)) { Substitute lc for uc if you prefer. Unicode is left as an exercise for the reader.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://257884]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-26 00:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found