るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.163秒)

別のキーワード

  1. rexml/document attributes
  2. attributes to_a
  3. ldap attributes=
  4. ldap attributes
  5. attributes add

ライブラリ

クラス

検索結果

REXML::Attributes#to_a -> [Attribute] (81643.0)

属性の配列を返します。

属性の配列を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a x='1' y='2' z='3' />")
doc.root.attributes.to_a # => [x='1', y='2', z='3']
//}