24件ヒット
[1-24件を表示]
(0.083秒)
ライブラリ
-
rexml
/ document (24)
クラス
-
REXML
:: Attribute (24)
検索結果
-
REXML
:: Attribute # to _ s -> String (21102.0) -
正規化された属性値を返します。
正規化された属性値を返します。
属性値の正規化については XML の仕様を参考にしてください。 -
REXML
:: Attribute # to _ string -> String (9113.0) -
"name='value'" という形式の文字列を返します。
..."name='value'" という形式の文字列を返します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}...