读取模板并使用读取的模板创建新的 XML 文件

发布于 2024-10-19 15:36:06 字数 734 浏览 2 评论 0原文

我正在尝试读取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅沫记忆 2024-10-26 15:36:06

您尝试过 string.Format 吗?

  1. 使用以下命令创建模板 XML 文件
    占位符,例如 {1}
  2. 调用
    String.Format(XmlContent,"Counter","Cnt")

希望有帮助。

Did you tried string.Format?

  1. Create the Template XML file with
    Place Holders, like this {1}
  2. Call
    String.Format(XmlContent,"Counter","Cnt")

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文