Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Strings with @

by bravenmd (Sexton)
on Mar 10, 2006 at 20:35 UTC ( [id://535811]=note: print w/replies, xml ) Need Help??


in reply to Strings with @

First thing you need is some kind of quoting around the email address. Then depending on which quoting system you use you may need to escape the @ character. Perl is mistaking the '@bigcorporation' for an array.
You can try either:
'some.g.guy@bigcorporation.com',
q~some.g.guy@bigcorporation.com~,
q{some.g.guy@bigcorporation.com},
"some.g.guy\@bigcorporation.com",
etc. all of which should work
Hope this helps!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-18 02:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found