36件ヒット
[1-36件を表示]
(0.133秒)
ライブラリ
-
rexml
/ document (36)
キーワード
- name (12)
-
stand
_ alone? (12)
検索結果
先頭3件
-
REXML
:: Document # expanded _ name -> String (6204.0) -
""(空文字列)を返します。
...""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。... -
REXML
:: Document # name -> String (6204.0) -
""(空文字列)を返します。
...""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。... -
REXML
:: Document # stand _ alone? -> String (6203.0) -
XML 宣言の standalone の値を文字列で返します。
...XML 宣言の standalone の値を文字列で返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.stand_alone? # => "yes"
//}...