るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.077秒)
トップページ > クエリ:l[x] > クエリ:y[x] > バージョン:2.1.0[x] > クエリ:get[x] > クエリ:prefix[x]

別のキーワード

  1. psych psych_y
  2. psych y
  3. kernel psych_y
  4. kernel y
  5. y kernel

ライブラリ

クラス

検索結果

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

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

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

//emlist[][ruby]{
require '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...