708件ヒット
[101-200件を表示]
(0.021秒)
別のキーワード
クラス
-
REXML
:: AttlistDecl (36) -
REXML
:: Attribute (24) -
REXML
:: Attributes (12) -
REXML
:: Child (12) -
REXML
:: Comment (12) -
REXML
:: DocType (192) -
REXML
:: Document (24) -
REXML
:: Element (96) -
REXML
:: Elements (12) -
REXML
:: Entity (120) -
REXML
:: ExternalEntity (24) -
REXML
:: Formatters :: Pretty (48) -
REXML
:: Instruction (12) -
REXML
:: NotationDecl (24) -
REXML
:: Text (36) -
REXML
:: XMLDecl (12)
モジュール
-
REXML
:: Namespace (12)
キーワード
- [] (12)
- add (12)
-
add
_ attribute (12) -
attribute
_ of (12) -
attributes
_ of (12) - bytes (12)
- clone (12)
- compact (12)
- compact= (12)
- context (24)
-
delete
_ attribute (12) - doctype (24)
-
each
_ element _ with _ attribute (12) - empty? (24)
- entities (12)
- entity (12)
- external (12)
-
external
_ id (12) - include? (12)
- name (24)
- namespace (12)
- namespaces (24)
- ndata (12)
-
node
_ type (108) - normalized (12)
- notation (12)
- notations (12)
- prefix (12)
- prefixes (12)
- pubid (12)
- public (12)
- ref (12)
- system (24)
- system= (12)
-
to
_ a (12) -
to
_ s (24) - unnormalized (12)
- value (12)
- width (12)
- width= (12)
- write (36)
検索結果
先頭5件
-
REXML
:: DocType # system -> String | nil (6103.0) -
DTD のシステム識別子を返します。
.../emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype.system # => "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype.public #......=> "-//W3C//DTD XHTML 1.0 Strict//EN"
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
doctype.public # => nil
//}... -
REXML
:: Document # node _ type -> Symbol (6103.0) -
シンボル :document を返します。
シンボル :document を返します。 -
REXML
:: Element # node _ type -> Symbol (6103.0) -
シンボル :element を返します。
シンボル :element を返します。 -
REXML
:: Elements # empty? -> bool (6103.0) -
子要素を持たない場合に true を返します。
子要素を持たない場合に true を返します。 -
REXML
:: Instruction # node _ type -> Symbol (6103.0) -
Symbol :processing_instruction を返します。
...Symbol :processing_instruction を返します。... -
REXML
:: Namespace # fully _ expanded _ name -> String (6103.0) -
完全修飾名を返します。
完全修飾名を返します。 -
REXML
:: NotationDecl # system -> String | nil (6103.0) -
システム識別子(URI)を返します。
システム識別子(URI)を返します。
宣言がシステム識別子を含まない場合は nil を返します。 -
REXML
:: NotationDecl # system=(value) (6103.0) -
システム識別子を変更します。
システム識別子を変更します。
@param value 設定するシステム識別子 -
REXML
:: Text # empty? -> bool (6103.0) -
テキストが空ならば真を返します。
テキストが空ならば真を返します。