instance method
xchr
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
xchr()
XML escaped version of chr
Source
# File activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb, line 93
def xchr
n = XChar::CP1252[self] || self
case n when *XChar::VALID
XChar::PREDEFINED[n] or (n<128 ? n.chr : "&##{n};")
else
'*'
end
end
Defined in activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb line 93
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Fixnum