On Wed, 6 Feb 2002, Octavian Rasnita wrote: > I tried to print my email address when it is enclosed in < and > signs but > it didn't print anything. > The code: > > my $line; > $line= "<orasnita\@yahoo.com>"; > # I also tried with $line = \<orasnita\@yahoo.com\>"; > print "$line";
No need for the double quotes (it will try to interpolate the @): ~$ perl $line = '<[EMAIL PROTECTED]>'; print "$line\n"; <[EMAIL PROTECTED]> ~$ -- Brett http://www.chapelperilous.net/ ------------------------------------------------------------------------ If you don't go to other men's funerals they won't go to yours. -- Clarence Day -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]