Class: String

Inherits:
Object show all
Defined in:
lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb

Overview

Enhance the String class with a XML escaped character version of to_s.

Instance Method Summary collapse

Instance Method Details

#to_xsObject

XML escaped version of to_s



110
111
112
113
114
# File 'lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb', line 110

def to_xs
  unpack('U*').map {|n| n.xchr}.join # ASCII, UTF-8
rescue
  unpack('C*').map {|n| n.xchr}.join # ISO-8859-1, WIN-1252
end