36件ヒット
[1-36件を表示]
(0.008秒)
ライブラリ
-
rexml
/ document (36)
検索結果
先頭3件
-
REXML
:: Element # root -> REXML :: Element (13.0) -
self が属する文書のルート要素を返します。
...hildren />
</children>
</root>
EOS
children = doc.get_elements("/root/children").first
children.name # => "children"
children.root.name # => "root"
grandchildren = doc.get_elements("/root/children/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root.name # => "root"
//}... -
REXML
:: Element # root _ node -> REXML :: Document | REXML :: Node (13.0) -
self が属する文書のルートノードを返します。
...dren />
</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
grandchildren.name # => "grandchildren"
grandchildren.root_node == doc # => tr... -
REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil (7.0) -
name で指定される属性を返します。
...://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attribute("att") # => att='<'
a.attribute("att", "http://example.org/bar") # => bar:att='2'
a.attribute("bar:att") # => bar:att='2'
a.attribu...