るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.071秒)

別のキーワード

  1. document root
  2. pstore root?
  3. psych root
  4. pathname root?
  5. rexml/document root

ライブラリ

クラス

検索結果

REXML::Element#root_node -> REXML::Document | REXML::Node (18226.0)

self が属する文書のルートノードを返します。

...Document) オブジェクトが
返されます。

その要素が属する REXML::Document オブジェクトが存在しない
場合は木構造上のルートノードが返されます。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchi...
...ren />
</children>
</root>
EOS

c
hildren = doc.get_elements("/root/children").first
c
hildren.name # => "children"
c
hildren.root_node == doc # => true
grandchildren = doc.get_elements("/root/children/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root_node == doc # => tru...