method
_escape
_escape(str, regex)
public
Hide source
# File lib/webrick/httputils.rb, line 353 def _escape(str, regex) str.gsub(regex){ "%%%02X" % $1.ord } end


