るりまサーチ

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

別のキーワード

  1. net/imap param
  2. win32ole win32ole_param
  3. win32ole_param name
  4. win32ole_param default
  5. win32ole_param output?

ライブラリ

キーワード

検索結果

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

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

...
使うことで属性を正しく指定することができます。

@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://ex...

REXML::Attributes#[](name) -> String | nil (20.0)

属性名nameの属性値を返します。

...ジェクトが必要な場合は
REXML::Attributes
#get_attribute を使ってください。

nameという属性名の属性がない場合は nil を返します。

@param name 属性名(文字列)

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<EOS)
<root xmlns:foo="htt...

REXML::Attributes#delete(attribute) -> REXML::Element (20.0)

指定した属性を取り除きます。

...ます

self が属する要素(REXML::Element)を返します。

@param attribute 取り除く属性(文字列もしくは REXML::Attribute オブジェクト)

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="h...

REXML::Attributes#delete_all(name) -> [REXML::Attribute] (20.0)

name という名前を持つ属性をすべて削除します。

...を持つ属性をすべて削除します。

削除された属性を配列で返します。

@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">...

REXML::Attributes#get_attribute(name) -> Attribute | nil (20.0)

name という名前の属性を取得します。

...す。

name という名前を持つ属性がない場合は nil を返します。

@param name 属性名(文字列)
@see REXML::Attributes#[]

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.or...

絞り込み条件を変える