1812件ヒット
[201-300件を表示]
(0.024秒)
種類
- インスタンスメソッド (1368)
- 特異メソッド (444)
クラス
-
REXML
:: AttlistDecl (24) -
REXML
:: Attribute (72) -
REXML
:: Attributes (108) -
REXML
:: CData (36) -
REXML
:: Child (108) -
REXML
:: Comment (36) -
REXML
:: Declaration (12) -
REXML
:: DocType (60) -
REXML
:: Document (96) -
REXML
:: Element (252) -
REXML
:: ElementDecl (12) -
REXML
:: Elements (144) -
REXML
:: Entity (96) -
REXML
:: ExternalEntity (24) -
REXML
:: Formatters :: Default (24) -
REXML
:: Formatters :: Pretty (60) -
REXML
:: Formatters :: Transitive (12) -
REXML
:: Instruction (48) -
REXML
:: NotationDecl (48) -
REXML
:: Parent (156) -
REXML
:: Text (108) -
REXML
:: XMLDecl (108) -
REXML
:: XPath (36)
モジュール
-
REXML
:: Namespace (60) -
REXML
:: Node (24) -
REXML
:: Security (48)
キーワード
- << (36)
- <=> (12)
- == (24)
- [] (24)
- []= (60)
- add (48)
-
add
_ attribute (24) -
add
_ attributes (12) -
add
_ element (12) -
add
_ namespace (24) - attribute (12)
-
attribute
_ of (12) - bytes (12)
- collect (12)
- compact (12)
- compact= (12)
- content= (12)
- context (12)
- context= (12)
- delete (36)
-
delete
_ all (24) -
delete
_ attribute (12) -
delete
_ element (12) -
delete
_ namespace (12) - doctype (12)
- dowrite (12)
- each (24)
-
each
_ element (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - element= (12)
- encoding= (12)
- entity (12)
-
entity
_ expansion _ limit (24) -
entity
_ expansion _ limit= (24) -
entity
_ expansion _ text _ limit (24) -
entity
_ expansion _ text _ limit= (24) - first (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ elements (12) -
get
_ text (12) -
has
_ name? (12) - include? (12)
- index (12)
- inject (12)
-
insert
_ after (12) -
insert
_ before (12) - match (12)
- matches? (12)
- name= (12)
- namespace (12)
- new (264)
-
next
_ sibling (12) -
next
_ sibling= (12) - normalize (12)
- normalized (12)
- normalized= (12)
- notation (12)
- nowrite (12)
- parent (12)
- parent= (12)
- parent? (24)
-
parse
_ stream (12) - prefix (12)
- prefix= (12)
-
previous
_ sibling (12) -
previous
_ sibling= (12) - public= (12)
- push (12)
- raw (12)
- raw= (12)
-
replace
_ child (12) -
replace
_ with (12) - standalone= (12)
- string= (12)
- system= (12)
- target= (12)
- text (12)
- text= (12)
-
to
_ a (12) -
to
_ s (48) - unnormalize (12)
- unnormalized (12)
- unshift (12)
- value (36)
- version= (12)
- width (12)
- width= (12)
- write (132)
- writethis (12)
- xmldecl (12)
検索結果
先頭5件
- REXML
:: Text . unnormalize(string , doctype = nil , filter = nil , illegal = nil) -> String - REXML
:: XPath . each(element , path = nil , namespaces = {} , variables = {}) {|e| . . . } -> () - REXML
:: XPath . first(element , path = nil , namespaces = {} , variables = {}) -> Node | nil - REXML
:: XPath . match(element , path = nil , namespaces = {} , variables = {}) -> [Node] - REXML
:: CData . new(text , respect _ whitespace = true , parent = nil) -> REXML :: CData
-
REXML
:: Text . unnormalize(string , doctype = nil , filter = nil , illegal = nil) -> String (26.0) -
string を非正規化(すべての entity をアンエスケープ)したものを 返します。
...い実体の実体名を文字列配列で指定します。
@param string 非正規化する文字列
@param doctype DTD(REXML::DocType オブジェクト)
@param filter アンエスケープしない実体の実体名(文字列配列)
@param illegal 内部用。使わないでください。
//e... -
REXML
:: XPath . each(element , path = nil , namespaces = {} , variables = {}) {|e| . . . } -> () (26.0) -
element の path で指定した XPath 文字列にマッチする各ノード に対してブロックを呼び出します。
...を付加するため、に用います。
@param element 要素(REXML::Element)
@param path XPath文字列
@param namespace 名前空間とURLの対応付け
@param variables 変数名とその値の対応付け
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xml... -
REXML
:: XPath . first(element , path = nil , namespaces = {} , variables = {}) -> Node | nil (26.0) -
element の path で指定した XPath 文字列にマッチする最初のノードを 返します。
...ない場合には nil を返します。
@param element 要素(REXML::Element)
@param path XPath文字列
@param namespace 名前空間とURLの対応付け
@param variables 変数名とその値の対応付け
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xmln... -
REXML
:: XPath . match(element , path = nil , namespaces = {} , variables = {}) -> [Node] (26.0) -
element の path で指定した XPath 文字列にマッチするノードの配列を 返します。
...を付加するため、に用います。
@param element 要素(REXML::Element)
@param path XPath文字列
@param namespace 名前空間とURLの対応付け
@param variables 変数名とその値の対応付け
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xml... -
REXML
:: CData . new(text , respect _ whitespace = true , parent = nil) -> REXML :: CData (20.0) -
text をテキストとして持つ CData オブジェクトを生成します。
...す。
偽の場合は空白はまとめられます。
@param text テキスト文字列
@param respect_whitespace 空白を保存するかどうかを決める真偽値
@param parent 親ノード
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root />
EOS
doc.root.ad... -
REXML
:: Comment . new(comment , parent = nil) -> REXML :: Comment (20.0) -
Comment オブジェクトを生成します。
...ment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノード... -
REXML
:: Comment . new(string , parent = nil) -> REXML :: Comment (20.0) -
Comment オブジェクトを生成します。
...ment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノード... -
REXML
:: Element # add _ attribute(attr) -> () (20.0) -
要素の属性を追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。
...値は unnormalized な文字列を渡す必要があります。
@param key 属性名(文字列)
@param value 属性値(文字列)
@param attr 属性(REXML::Attribute オブジェクト)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<e/>")
doc.root.add_attribute("a", "b");... -
REXML
:: Element # add _ attribute(key , value) -> () (20.0) -
要素の属性を追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。
...値は unnormalized な文字列を渡す必要があります。
@param key 属性名(文字列)
@param value 属性値(文字列)
@param attr 属性(REXML::Attribute オブジェクト)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<e/>")
doc.root.add_attribute("a", "b");...
