312件ヒット
[301-312件を表示]
(0.105秒)
ライブラリ
-
net
/ imap (12) - rake (48)
-
rexml
/ document (252)
クラス
-
Net
:: IMAP (12) -
REXML
:: Attribute (12) -
REXML
:: Attributes (48) -
REXML
:: DocType (12) -
REXML
:: Element (84) -
Rake
:: NameSpace (24)
モジュール
- Kernel (12)
-
REXML
:: Namespace (96) -
Rake
:: TaskManager (12)
キーワード
- [] (12)
-
add
_ namespace (24) - attribute (12)
- capability (12)
-
delete
_ namespace (12) - each (12)
-
each
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ name? (12) -
in
_ namespace (12) -
local
_ name (12) - name (12)
- name= (12)
- namespaces (36)
- prefix (12)
- prefix= (12)
- tasks (12)
- whitespace (12)
検索結果
-
REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () (13.0) -
各属性に対しブロックを呼び出します。
...ttp://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.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end
# => ["http://example.org/foo", "att", "1"]
# => ["http:......//example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}...