http://qs321.pair.com?node_id=538746


in reply to web spider

When posting this type of question, you'll generally get a better response if you take a shot and post the code that's not working for you. That said, you might want something like this:
map s/\@ulster\.ac\.uk//, @your_array;
or
map s/\@ulster\.ac\.uk//g, @your_array;
if there is a possibility that an array element will hold more than one email address.

Take some time and look up 'map' and s///. There is MTOWTDI, and there are more basic solutions to this problem.

Replies are listed 'Best First'.
Re^2: web spider
by merlyn (Sage) on Mar 23, 2006 at 15:30 UTC