24件ヒット
[1-24件を表示]
(0.288秒)
ライブラリ
-
rexml
/ document (24)
クラス
-
REXML
:: Attribute (24)
検索結果
-
REXML
:: Attribute # prefix -> String (18132.0) -
属性の名前空間を返します。
...ML::Element.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x", "y" )
p a.prefix # -... -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (19.0) -
属性の名前空間の URI を返します。
...ます。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"...