るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.047秒)
トップページ > クエリ:-[x] > クエリ:attributes[x] > クエリ:get_attribute[x] > クラス:REXML::Attribute[x]

別のキーワード

  1. rexml/document attributes
  2. attributes get_attribute
  3. attributes get_attribute_ns
  4. attributes each_attribute
  5. attributes delete

ライブラリ

キーワード

検索結果

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

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

...//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "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::Attribute#prefix -> String (125.0)

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

...t.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x", "y" )
p a.prefix # -> ""
//}...

REXML::Attribute#to_string -> String (113.0)

"name='value'" という形式の文字列を返します。

..."name='value'" という形式の文字列を返します。

//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}...