るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.007秒)
トップページ > クラス:REXML::Attribute[x] > クエリ:namespace[x]

別のキーワード

  1. rexml/document namespace
  2. rake namespace
  3. element add_namespace
  4. rexml/document add_namespace
  5. namespace []

ライブラリ

検索結果

REXML::Attribute#namespace(arg = nil) -> String | nil (18108.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"
//}...