for (@HTML) { s/&/&/g; s/</</g; s/>/>/g; }
If you really wanted to use the map method, you don't need intermediate variables for each possible step. @finished = map { ... } map { ... } map { ... } @originals works just fine. (The last mentioned map is performed first.)
--
[ e d @ h a l l e y . c c ]
In reply to Re: Re^3: View The HTML ???
by halley
in thread View The HTML ???
by einerwitzen
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |