> ruby forge drives me crazy trying to find things...
Sometimes what you seek was obvious to everyone else, so they didn't
excessively document it. Sorry.
> need a library that provides simple functionality of take a string and
> doing html escaping
>
> " to "
> & to &
require 'cgi'
...
def test_escapeHTML()
scream = CGI::escapeHTML(">scream<")
assert_equal(scream, '>scream<')
end
--
Phlip
http://www.c2.com/cgi/wiki?ZeekLand
> --------------090403080404050404020301
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> Content-Transfer-Encoding: 7bit
it's builtin to ruby:
harp:~ > irb -r cgi
irb(main):001:0> CGI::escapeHTML %Q( " )
=> " " "
irb(main):002:0> CGI::escapeHTML %Q( & )
=> " & "
irb(main):003:0> CGI::escapeHTML %Q( < )
=> " < "
irb(main):004:0> CGI::escapeHTML %Q( > )
=> " > "
cheers.
-a
--
===============================================================================
| email :: ara [dot] t [dot] howard [at] noaa [dot] gov
| phone :: 303.497.6469
| renunciation is not getting rid of the things of this world, but accepting
| that they pass away. --aitken roshi
===============================================================================