36件ヒット
[1-36件を表示]
(0.017秒)
別のキーワード
ライブラリ
-
rexml
/ document (36)
クラス
-
REXML
:: Attributes (24) -
REXML
:: Element (12)
キーワード
-
delete
_ all (12) -
delete
_ attribute (12)
検索結果
先頭3件
-
REXML
:: Attributes # delete(attribute) -> REXML :: Element (21250.0) -
指定した属性を取り除きます。
...り除きます。
attribute で取り除く属性を指定します。
文字列もしくは REXML::Attribute オブジェクトを指定します
self が属する要素(REXML::Element)を返します。
@param attribute 取り除く属性(文字列もしくは REXML::Attribute オブジェク......<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 = a.attributes.get_attribute("bar:att")
a.attributes.delete(attr) # => <a/>
//}... -
REXML
:: Element # delete _ attribute(key) -> REXML :: Attribute | nil (12333.0) -
要素から key という属性名の属性を削除します。
...素(文字列(属性名) or REXML::Attributeオブジェクト)
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("E")
e.add_attribute("x", "foo"); e # => <E x='foo'/>
e.add_attribute("y:x", "bar"); e # => <E x='foo' y:x='bar'/>
e.delete_attribute("x"); e # => <E y:x='bar'/>
//}... -
REXML
:: Attributes # delete _ all(name) -> [REXML :: Attribute] (9208.0) -
name という名前を持つ属性をすべて削除します。
...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.delete_all("att") # => [att='<']
a # => <a foo:att='1' bar:att='2'/>
//}...