るりまサーチ

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

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. pop3 n_bytes
  3. net/pop n_bytes
  4. pop n_bytes
  5. net/pop n_mails

ライブラリ

キーワード

検索結果

REXML::Element#attribute(name, namespace = nil) -> REXML::Attribute | nil (21533.0)

name で指定される属性を返します。

...
n
ame で指定される属性を返します。

属性は REXML::Attribute オブジェクトの形で返します。

n
ame は "foo:bar" のように prefix を指定することができます。

n
amespace で名前空間の URI を指定することで、その名前空間内で
n
ame という...
...性名の属性がない場合は nil を返します。

@param name 属性名(文字列)
@param namespace 名前空間のURI(文字列)
//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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attribute("att") # => att='&lt;'
a.attribute("att", "http://example.org/bar") # => bar:att='2'
a.attribute("bar:att") # => bar:att='2'
a.attribute("baz") # => nil
//}...

REXML::Attributes#get_attribute_ns(namespace, name) -> REXML::Attribute | nil (15427.0)

namespace と name で特定される属性を返します。

...namespace name で特定される属性を返します。

n
amespace で名前空間を、 name で prefix を含まない属性名を
指定します。

指定された属性が存在しない場合は nil を返します。

XML プロセッサが prefix を置き換えてしまった場合...
...く指定することができます。

@param namespace 名前空間(URI, 文字列)
@param name 属性名(文字列)

//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' b...
...EOS
a = doc.get_elements("/root/a").first

a.attributes.get_attribute_ns("", "att") # => att='&lt;'
a.attributes.get_attribute_ns("http://example.org/foo", "att") # => foo:att='1'
a.attributes.get_attribute_ns("http://example.org/baz", "att") # => nil
a.attributes.get_attribute_ns("http://example.or...

REXML::Attribute#namespace(arg = nil) -> String | nil (15225.0)

属性の名前空間の URI を返します。

... nil を返します。

@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
の URI が返されます。
通常は省略します。

//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:n...
...s", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}...

REXML::Attributes#namespaces -> { String => String } (15201.0)

self の中で宣言されている名前空間の集合を返します。

...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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first

p doc.root.attributes.namespaces
# => {"foo"=>"http://exam...
...ple.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}...