るりまサーチ

最速Rubyリファレンスマニュアル検索!
66件ヒット [1-66件を表示] (0.210秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:p[x] > クラス:REXML::Attribute[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

ライブラリ

キーワード

検索結果

REXML::Attribute#prefix -> String (6120.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#namespace(arg = nil) -> String | nil (6114.0)

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

...@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
の 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#node_type -> Symbol (6102.0)

「:attribute」というシンボルを返します。

「:attribute」というシンボルを返します。

REXML::Attribute#xpath -> String (6102.0)

その属性を指定する xpath 文字列を返します。

...その属性を指定する xpath 文字列を返します。

例えば "/foo/bar/@ns:r" という文字列を返します。...

REXML::Attribute#write(output, indent = -1) -> object (102.0)

output に self の情報を name='value' という形式で書き込みます。

...output に self の情報を name='value' という形式で書き込みます。

output が返ります。

@param output 書き込み先の IO オブジェクト
@param indent インデントレベル、ここでは無視される...

絞り込み条件を変える

REXML::Attribute#to_string -> String (8.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'"
//}...