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


in reply to Having a problem replacing "@" with "\@"

Why don't you use a substitution?
$$email[0] =~ s!@!\\@!;
Doesn't this work?

Alberto Simões