xmlua.Comment
クラスコメントノード用のクラスです。通常、[xmlua.Document:create_comment
][create-comment]を使用して取得します。
例:
local xmlua = require("xmlua")
local document = xmlua.XML.build({"root"})
local comment_node = -- -> xmlua.Comment
document:create_comment("This is <CDATA>")
content() -> string
コメントノードの内容を string
として返します。
例:
local xmlua = require("xmlua")
local document = xmlua.XML.build({"root"})
local comment_node =
document:create_comment("This is comment")
print(comment_node:content())
--This is comment
set_content(countent) -> void
このメソッドは、コメントノードの内容を設定できます。
例:
local xmlua = require("xmlua")
local document = xmlua.XML.build({"root"})
local comment_node =
document:create_comment("This is comment")
print(comment_node:content())
--This is comment
comment_node:set_content("Seted comment")
print(comment_node:content())
--Seted comment
replace(replace_node) -> void
レシーバのノードを指定したノードに置き換えます。
例:
local document = xmlua.XML.build({"root"})
local comment_node =
document:create_comment("This is comment")
local replace_node =
document:create_cdata_section("This is <CDATASetion>")
root = document:root()
root:add_child(comment_node)
print(document:to_xml())
--<?xml version="1.0" encoding="UTF-8"?>
--<root>
-- <!--This is Comment-->
--</root>
comment_node:replace(replace_node)
print(document:to_xml())
--<?xml version="1.0" encoding="UTF-8"?>
--<root><!--[CDATA[This is <CDATA>]]></root>
text() -> nil
コメントノードは子要素を持たないため、nil
を返します。
path() -> string
コメントノードのXPathを string
として返します。
例:
local document = xmlua.XML.build({"root"})
local comment_node =
document:create_comment("This is comment")
root = document:root()
root:add_child(comment_node)
print(comment_node:path())
--/root/comment()
unlink() -> xmlua.Element
レシーバーをドキュメントツリーから削除します。
例:
local document = xmlua.XML.build({"root"})
local comment_node =
document:create_comment("This is comment")
root = document:root()
root:add_child(comment_node)
print(document:to_xml())
--<?xml version="1.0" encoding="UTF-8"?>
--<root>
-- <!--This is comment-->
--</root>
comment_node:unlink()
print(document:to_xml())
--<?xml version="1.0" encoding="UTF-8"?>
--<root/>