12件ヒット
[1-12件を表示]
(0.147秒)
別のキーワード
ライブラリ
-
rexml
/ document (12)
検索結果
先頭1件
-
REXML
:: Comment (26030.0) -
XML コメントを表すクラス。
...コメントとは <!-- と --> で挟まれたテキストです。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<!-- xx -->
<root>
<!-- yy -->
text
<!-- zz -->
</root>
EOS
doc[0].string # => " xx "
doc.root[1].string # => " yy "
doc.root[3].string # => " zz "
//}...