in reply to Re: Re: Ignore ALL characters and delete?
in thread Ignore ALL characters and delete?

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.