るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.058秒)
トップページ > クエリ:|[x] > クエリ:-[x] > クエリ:root[x] > クエリ:root_node[x]

別のキーワード

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

ライブラリ

クラス

検索結果

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

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

...ument'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchildren />
</children>
</root>
EOS

children = doc.get_elements("/root/children").first
children.name # => "children"
children.root_node == doc # => true
grandchildren = doc.get_elements("/root/children/grandchildren").first
grandchi...
...ldren.name # => "grandchildren"
grandchildren.root_node == doc # => true
//}...