るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

キーワード

検索結果

<< 1 2 > >>

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

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

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

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

REXML::Attribute#prefix -> String (12202.0)

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

...//emlist[][ruby]{
r
equire 'rexml/document'
e = REXML::Element.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#write(output, indent = -1) -> object (12202.0)

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

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

output が返ります。

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

REXML::Attribute#remove -> () (12102.0)

self を所属する要素から取り除きます。

self を所属する要素から取り除きます。

REXML::Attribute#element -> REXML::Element (9302.0)

その属性が属する要素を返します。

その属性が属する要素を返します。

絞り込み条件を変える

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

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

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

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

REXML::Attribute#to_s -> String (9202.0)

正規化された属性値を返します。

正規化された属性値を返します。

属性値の正規化については XML の仕様を参考にしてください。

REXML::Attribute#element=(element) (9102.0)

self が属する要素を変更します。

...self が属する要素を変更します。

@param element 変更先の要素(REXML::Element)...

REXML::Attribute#node_type -> Symbol (9102.0)

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

...「:attribute」というシンボルを返します。...
<< 1 2 > >>