るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.156秒)

別のキーワード

  1. rexml/document write
  2. rexml/document clone
  3. rexml/document to_s
  4. rexml/document node_type

検索結果

REXML::Entity#to_s -> String (24031.0)

実体宣言を文字列化したものを返します。

...実体宣言を文字列化したものを返します。

@see REXML::Entity#write

//emlist[][ruby]{
e = REXML::ENTITY.new("w", "wee");
p e.to_s # => "<!ENTITY w \"wee\">"
//}...