读取模板并使用读取的模板创建新的 XML 文件
我正在尝试读取 XML 模板(代码如下),并将此内容放入新的 XML 文件中。
<?xml version="1.0" encoding="utf-8"?>
<Format>
<Name title=""></Name>
<FormatA>
<Scheme name="A" set="number" get="integer">
<Sample set="number" get="integer">33</Sample>
</Scheme>
</FormatA>
<FormatX>
<Scheme name="A" set="number" get="integer">
<Sample set="number" get="integer">44</Sample>
</Scheme>
</FormatX>
</Format>
并将输入值并写入标题和名称值。例如,当我输入“Counter”作为标题,“Cnt”作为值时。 基本上,我将
<Name title="Counter">Cnt</Name>
复制模板的内容,将其与输入的标题和值一起放入新的 XML 文件中。
感谢您的阅读以及谁会回答我的询问。
I'm attempting to read a XML template, code below, and put this content to a new XML file.
<?xml version="1.0" encoding="utf-8"?>
<Format>
<Name title=""></Name>
<FormatA>
<Scheme name="A" set="number" get="integer">
<Sample set="number" get="integer">33</Sample>
</Scheme>
</FormatA>
<FormatX>
<Scheme name="A" set="number" get="integer">
<Sample set="number" get="integer">44</Sample>
</Scheme>
</FormatX>
</Format>
And will input values and write the title and a value for name. e.g When I enter "Counter" for the title and "Cnt" for the value. It will write
<Name title="Counter">Cnt</Name>
Basically, I'll just copy the contents of the template, put it in the new XML file with the inputted title and value.
Thank you for reading and who will answer my inquiry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 string.Format 吗?
占位符,例如 {1}
String.Format(XmlContent,"Counter","Cnt")
希望有帮助。
Did you tried string.Format?
Place Holders, like this {1}
String.Format(XmlContent,"Counter","Cnt")
Hope it helps.