72件ヒット
[1-72件を表示]
(0.047秒)
クラス
-
REXML
:: Comment (60) -
REXML
:: DocType (12)
キーワード
- <=> (12)
- == (12)
-
attribute
_ of (12) - string= (12)
-
to
_ s (12)
検索結果
先頭5件
-
REXML
:: Comment # string -> String (21206.0) -
コメント文字列を返します。
コメント文字列を返します。 -
REXML
:: Comment # string=(value) (9104.0) -
コメント文字列を設定します。
コメント文字列を設定します。
@param value 設定する文字列 -
REXML
:: Comment # to _ s -> String (6106.0) -
コメント文字列を返します。
コメント文字列を返します。 -
REXML
:: Comment # <=>(other) -> -1 | 0 | 1 (3035.0) -
other と内容(REXML::Comment#string)を比較します。
...other と内容(REXML::Comment#string)を比較します。... -
REXML
:: Comment # ==(other) -> bool (3035.0) -
other と内容(REXML::Comment#string)が同じならば真を返します。
...other と内容(REXML::Comment#string)が同じならば真を返します。... -
REXML
:: DocType # attribute _ of(element , attribute) -> String | nil (116.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
...t 要素名(文字列)
@param attribute 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUI...