60件ヒット
[1-60件を表示]
(0.032秒)
別のキーワード
ライブラリ
-
rexml
/ document (60)
クラス
-
REXML
:: Attributes (36) -
REXML
:: Elements (24)
検索結果
先頭5件
-
REXML
:: Elements # [](index , name = nil) -> REXML :: Element | nil (18143.0) -
index が指し示している要素を返します。
...ist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new '<a><b/><c id="1"/><c id="2"/><d/></a>'
doc.root.elements[1] # => <b/>
doc.root.elements['c'] # => <c id='1'/>
doc.root.elements[2,'c'] # => <c id='2'/>
doc = REXML::Document.new '<a><b><c /><a id="1"/></b></a>'
doc.root.el......ements["a"] # => nil
doc.root.elements["b/a"] # => <a id='1'/>
doc.root.elements["/a"] # => <a> ... </>
//}... -
REXML
:: Attributes # [](name) -> String | nil (18125.0) -
属性名nameの属性値を返します。
...me 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<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
p a.attributes["att"]... -
REXML
:: Elements # []=(index , element) (6149.0) -
集合に要素 element を追加/更新します。
...ト)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new '<a/>'
doc.root.elements[10] = REXML::Element.new('b')
doc.root.to_s # => "<a><b/></a>"
doc.root.elements[1] # => <b/>
doc.root.elements[1] = REXML::Element.new('c')
doc.root.to_s # => "<a><c/></a>"
doc.root.elements['c'] = R......EXML::Element.new('d')
doc.root.to_s # => "<a><d/></a>"
//}... -
REXML
:: Attributes # []=(name , value) (6125.0) -
指定した属性を更新します。
...追加されます。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<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["att"] = "... -
REXML
:: Attributes # prefixes -> [String] (37.0) -
self の中で宣言されている prefix の集合を 文字列の配列で返します。
...ません。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<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
p doc.root.attributes.prefixes #......=> ["foo", "bar"]
p a.attributes.prefixes # => []
//}...