120件ヒット
[101-120件を表示]
(0.066秒)
ライブラリ
-
rexml
/ document (120)
キーワード
- bytes (12)
- document (12)
-
next
_ sibling (12) -
next
_ sibling= (12) - parent (12)
- parent= (12)
-
previous
_ sibling (12) -
previous
_ sibling= (12) - remove (12)
-
replace
_ with (12)
検索結果
-
REXML
:: Child # previous _ sibling=(other) (3002.0) -
other を self の前の隣接ノードとします。
other を self の前の隣接ノードとします。
つまり、親ノードが持つ子ノード列の self の前に
other を挿入します。
@param other 挿入するノード
//emlist[][ruby]{
require 'rexml/document'
a = REXML::Element.new("a")
b = a.add_element("b")
c = REXML::Element.new("c")
b.next_sibling = c
d = REXML::Element.new("d")
b.previous_sibling = d
p a.to_s # =>... -
REXML
:: Child # remove -> self (3002.0) -
親ノードの子ノード列から self を取り除きます。
親ノードの子ノード列から self を取り除きます。