1512件ヒット
[201-300件を表示]
(0.084秒)
別のキーワード
クラス
-
REXML
:: AttlistDecl (12) -
REXML
:: Attribute (72) -
REXML
:: Attributes (96) -
REXML
:: Child (72) -
REXML
:: Comment (12) -
REXML
:: Declaration (12) -
REXML
:: DocType (192) -
REXML
:: Document (72) -
REXML
:: Element (216) -
REXML
:: Elements (72) -
REXML
:: Entity (24) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: Formatters :: Pretty (48) -
REXML
:: Instruction (36) -
REXML
:: NotationDecl (36) -
REXML
:: Parent (336) -
REXML
:: Text (36) -
REXML
:: XMLDecl (12)
モジュール
-
REXML
:: Namespace (96) -
REXML
:: Node (36)
キーワード
- << (12)
- [] (24)
- []= (36)
- add (24)
-
add
_ namespace (24) - attribute (12)
-
attribute
_ of (12) -
attributes
_ of (12) - children (12)
- clone (12)
- collect (12)
- compact (12)
- compact= (12)
- content (12)
- context (12)
-
deep
_ clone (12) - delete (12)
-
delete
_ all (12) -
delete
_ at (12) -
delete
_ if (24) -
delete
_ namespace (12) - doctype (24)
- each (48)
-
each
_ attribute (12) -
each
_ child (24) -
each
_ element (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) -
each
_ index (24) - empty? (24)
- entities (12)
- entity (12)
-
external
_ id (12) -
get
_ attribute _ ns (12) -
get
_ elements (12) -
get
_ text (12) -
has
_ name? (12) - index (12)
-
index
_ in _ parent (12) - inject (12)
-
insert
_ after (12) -
insert
_ before (12) - length (24)
-
local
_ name (12) - name (36)
- name= (12)
- namespace (24)
- namespaces (36)
-
next
_ sibling= (12) -
node
_ type (108) - notation (12)
- notations (12)
- parent (12)
- parent= (12)
- parent? (24)
- prefix (24)
- prefix= (12)
- prefixes (24)
-
previous
_ element (12) -
previous
_ sibling (12) -
previous
_ sibling= (12) -
previous
_ sibling _ node (12) - pubid (12)
- public (24)
- public= (12)
- push (12)
-
replace
_ child (12) -
replace
_ with (12) - size (24)
- system (12)
- target (12)
- text (12)
-
to
_ a (24) -
to
_ s (12) -
to
_ string (12) - unshift (12)
- whitespace (12)
- width (12)
- width= (12)
- write (108)
- xpath (24)
検索結果
先頭5件
-
REXML
:: Attribute # xpath -> String (6103.0) -
その属性を指定する xpath 文字列を返します。
...その属性を指定する xpath 文字列を返します。
例えば "/foo/bar/@ns:r" という文字列を返します。... -
REXML
:: Child # parent=(other) (6103.0) -
other を親ノードに設定します。
...メソッドだけでは other の子ノード集合に self は追加されません。
つまりこのメソッドを呼び出した直後は不完全な状態であり、親ノード側を
適切に設定する必要があります。
@param other 新たな親ノード
@see REXML::Child#parent... -
REXML
:: Child # previous _ sibling -> REXML :: Node (6103.0) -
前の隣接ノードを返します。
...前の隣接ノードを返します。
REXML::Node#previous_sibling_node の別名です。
@see REXML::Child#previous_sibling=... -
REXML
:: Child # replace _ with(child) -> self (6103.0) -
親ノードの子ノード列上において、 self を child に置き換えます。
...親ノードの子ノード列上において、 self を child に置き換えます。
@param child 置き換え後のノード
@see REXML::Parent#replace_child... -
REXML
:: Comment # node _ type -> Symbol (6103.0) -
シンボル :comment を返します。
シンボル :comment を返します。 -
REXML
:: DocType # namespaces -> nil (6103.0) -
nil を返します。
nil を返します。 -
REXML
:: DocType # public -> String | nil (6103.0) -
DTD の公開識別子を返します。
...[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 # => "-//W......3C//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 # expanded _ name -> String (6103.0) -
""(空文字列)を返します。
...""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。... -
REXML
:: Document # node _ type -> Symbol (6103.0) -
シンボル :document を返します。
シンボル :document を返します。