SPUG:escaping HTML

ced at carios2.ca.boeing.com ced at carios2.ca.boeing.com
Sun May 11 21:06:27 CDT 2003


> $ perl -ne 's/</&lt;/g; s/>/&gt;/g' < index.html > outdex.html
          ^
          ^
          p


With a couple more for safety:

$ perl -pe 's/</&lt;/g;s/>/&gt;/g;s/"/&quot;/g;s/&/&amp;/g' \
   < index.html > outdex.html


--
Charles DeRykus



More information about the spug-list mailing list