2件ヒット
[1-2件を表示]
(0.120秒)
別のキーワード
ライブラリ
-
rexml
/ document (2)
クラス
-
REXML
:: Attribute (2)
検索結果
-
REXML
:: Attribute # to _ s -> String (81307.0) -
正規化された属性値を返します。
正規化された属性値を返します。
属性値の正規化については XML の仕様を参考にしてください。 -
REXML
:: Attribute # to _ string -> String (45340.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'"
//}