1440件ヒット
[101-200件を表示]
(0.022秒)
別のキーワード
種類
- インスタンスメソッド (1068)
- 特異メソッド (372)
クラス
-
REXML
:: AttlistDecl (24) -
REXML
:: Attribute (72) -
REXML
:: Attributes (96) -
REXML
:: CData (12) -
REXML
:: Child (60) -
REXML
:: Comment (36) -
REXML
:: Declaration (12) -
REXML
:: DocType (60) -
REXML
:: Document (60) -
REXML
:: Element (240) -
REXML
:: ElementDecl (12) -
REXML
:: Elements (144) -
REXML
:: Entity (48) -
REXML
:: ExternalEntity (24) -
REXML
:: Formatters :: Default (24) -
REXML
:: Formatters :: Pretty (36) -
REXML
:: Formatters :: Transitive (12) -
REXML
:: Instruction (48) -
REXML
:: NotationDecl (48) -
REXML
:: Parent (144) -
REXML
:: Text (60) -
REXML
:: XMLDecl (72) -
REXML
:: XPath (36)
モジュール
-
REXML
:: Namespace (36) -
REXML
:: Node (12) -
REXML
:: Security (12)
キーワード
- << (36)
- <=> (12)
- == (24)
- [] (24)
- []= (48)
- add (48)
-
add
_ attribute (24) -
add
_ attributes (12) -
add
_ element (12) -
add
_ namespace (24) - attribute (12)
-
attribute
_ of (12) - collect (12)
- compact= (12)
- content= (12)
- context= (12)
- delete (36)
-
delete
_ all (24) -
delete
_ attribute (12) -
delete
_ element (12) -
delete
_ namespace (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) - 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) - normalize (12)
- normalized= (12)
- notation (12)
- parent= (12)
-
parse
_ stream (12) - prefix= (12)
-
previous
_ sibling= (12) - public= (12)
- push (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 (12) - unnormalize (12)
- unshift (12)
- version= (12)
- width= (12)
- write (132)
- xmldecl (12)
検索結果
先頭5件
- REXML
:: DocType # write(output , indent = 0 , transitive = false , ie _ hack = false) -> () - REXML
:: Document # write(output = $ stdout , indent = -1 , transitive = false , ie _ hack = false , encoding=nil) -> () - REXML
:: Document # write(output: $ stdout , indent: -1 , transitive: false , ie _ hack: false , encoding: nil) -> () - REXML
:: Element # each _ element _ with _ attribute(key , value = nil , max = 0 , name = nil) {|element| . . . } -> () - REXML
:: Element # write(output = $ stdout , indent = -1 , transitive = false , ie _ hack = false)
-
REXML
:: DocType # write(output , indent = 0 , transitive = false , ie _ hack = false) -> () (26.0) -
output に DTD を出力します。
...XML::Formatter で
出力してください。
@param output 出力先の IO オブジェクト
@param indent インデントの深さ。指定しないでください。
@param transitive 無視されます。指定しないでください。
@param ie_hack 無視されます。指定しないで... -
REXML
:: Document # write(output = $ stdout , indent = -1 , transitive = false , ie _ hack = false , encoding=nil) -> () (26.0) -
output に XML 文書を出力します。
...キーワード引数による引数指定が可能です。
@param output 出力先(IO のように << で書き込めるオブジェクト)
@param indent インデントのスペースの数(-1 だとインデントしない)
@param transitive XMLではインデントのスペースでDOMが変......これに真を渡すと、XMLのDOMに余計な要素が加わらないように
空白の出力を適当に抑制するようになる
@param ie_hack IEはバージョンによってはXMLをちゃんと解釈できないので、
それに対応したXMLを出力するかどう... -
REXML
:: Document # write(output: $ stdout , indent: -1 , transitive: false , ie _ hack: false , encoding: nil) -> () (26.0) -
output に XML 文書を出力します。
...キーワード引数による引数指定が可能です。
@param output 出力先(IO のように << で書き込めるオブジェクト)
@param indent インデントのスペースの数(-1 だとインデントしない)
@param transitive XMLではインデントのスペースでDOMが変......これに真を渡すと、XMLのDOMに余計な要素が加わらないように
空白の出力を適当に抑制するようになる
@param ie_hack IEはバージョンによってはXMLをちゃんと解釈できないので、
それに対応したXMLを出力するかどう... -
REXML
:: Element # each _ element _ with _ attribute(key , value = nil , max = 0 , name = nil) {|element| . . . } -> () (26.0) -
特定の属性を持つすべての子要素を引数としてブロックを呼び出します。
...されます(0個ではありません)。
@param key 属性名(文字列)
@param value 属性値(文字列)
@param max ブロック呼出の対象とする子要素の最大個数
@param name xpath文字列
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a><b id='1'/><c id=... -
REXML
:: Element # write(output = $ stdout , indent = -1 , transitive = false , ie _ hack = false) (26.0) -
このメソッドは deprecated です。 REXML::Formatter を代わりに 使ってください。
...列化したものを(子要素を含め)出力します。
@param output 出力先(IO のように << で書き込めるオブジェクト)
@param indent インデントのスペースの数(-1 だとインデントしない)
@param transitive XMLではインデントのスペースでDOMが変化......これに真を渡すと、XMLのDOMに余計な要素が加わらないように
空白の出力を適当に抑制するようになる
@param ie_hack IEはバージョンによってはXMLをちゃんと解釈できないので、
それに対応したXMLを出力するかどう... -
REXML
:: NotationDecl . new(name , middle , pub , sys) -> REXML :: NotationDecl (26.0) -
NotationDecl オブジェクトを生成します。
...NotationDecl オブジェクトを生成します。
@param name 記法名(文字列)
@param middle 種別("PUBLIC" もしくは "SYSTEM")
@param pub 公開識別子(文字列)
@param sys URI(文字列)... -
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 内部用。使わないでください。
//emli... -
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...