60件ヒット
[1-60件を表示]
(0.112秒)
ライブラリ
-
rexml
/ document (60)
クラス
-
REXML
:: Attributes (12) -
REXML
:: Element (48)
検索結果
先頭5件
-
REXML
:: Element # get _ elements(xpath) -> [REXML :: Element] (27303.0) -
xpath にマッチする要素を配列で返します。
...xpath にマッチする要素を配列で返します。
xpath には XPath 文字列を指定します。
@param xpath XPath 文字列
@see REXML::Elements#to_a... -
REXML
:: Element # root -> REXML :: Element (3114.0) -
self が属する文書のルート要素を返します。
...<<EOS)
<root>
<children>
<grandchildren />
</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"
grandc... -
REXML
:: Element # root _ node -> REXML :: Document | REXML :: Node (3013.0) -
self が属する文書のルートノードを返します。
...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
grandchildren.name # => "grandchildren"
gra... -
REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil (3007.0) -
name で指定される属性を返します。
...root xmlns:foo="http://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") # => b... -
REXML
:: Attributes # delete(attribute) -> REXML :: Element (114.0) -
指定した属性を取り除きます。
...り除く属性を指定します。
文字列もしくは REXML::Attribute オブジェクトを指定します
self が属する要素(REXML::Element)を返します。
@param attribute 取り除く属性(文字列もしくは REXML::Attribute オブジェクト)
//emlist[][ruby]{
require 'rexm......root xmlns:foo="http://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.attributes.delete("att") # => <a foo:att='1' bar:att='2'/>
a.attributes.delete("foo:att") # => <a bar:att='2'/>
attr =...