るりまサーチ (Ruby 2.6.0)

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

別のキーワード

  1. _builtin children
  2. pathname children
  3. dir children
  4. node children
  5. psych children

ライブラリ

クラス

検索結果

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

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

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

通常はその要素が属する文書(REXML::Document) オブジェクトが
返されます。

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

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

children = doc.get_elements...