Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • webrick/htmlutils.rb

Methods

WEBrick::HTMLUtils

Public Class Methods

escape(string) click to toggle source

Escapes &, “, > and < in string

 
               # File webrick/htmlutils.rb, line 17
def escape(string)
  return "" unless string
  str = string.b
  str.gsub!(/&/n, '&amp;')
  str.gsub!(/\"/n, '&quot;')
  str.gsub!(/>/n, '&gt;')
  str.gsub!(/</n, '&lt;')
  str.force_encoding(string.encoding)
end