0

我想更改 xml 文档中某些元素的属性。最简单的方法是什么?(Xquery 是最好的,或者我可以以某种方式处理 python)

更改/root/person[1]/@name"Jim"
更改/root/person[2]/@name"John"

示例.xml

<root>
    <person name="brian">
    <number>1</number>
    <school>Y</school>
    <age>18</age>
    </person>
    <person name="brian">
    <number>1</number>
    <school>Y</school>
    <age>18</age>
    </person>
</root>

Sample_result.xml

<root>
    <person name="Jim">
    <number>1</number>
    <school>Y</school>
    <age>18</age>
    </person>
    <person name="John">
    <number>1</number>
    <school>Y</school>
    <age>18</age>
    </person>
</root>
4

3 回答 3

1

在 XSLT 中最容易对 XML 文档进行小的更改:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <!-- By default, copy elements and attributes unchanged -->
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node() | @*"/>
    </xsl:copy>
  </xsl:template>

  <!-- Change /root/person[1]/@name to "Jim" -->
  <xsl:template match="/root/person[1]/@name">
    <xsl:attribute name="name">Jim</xsl:attribute>
  </xsl:template>

  <!-- Change /root/person[2]/@name to "John" -->
  <xsl:template match="/root/person[2]/@name">
    <xsl:attribute name="name">John</xsl:attribute>
  </xsl:template>

</xsl:stylesheet>
于 2012-08-28T08:41:38.037 回答
1

如果您的实现支持它,请尝试XQuery Update 。

replace value of node /root/person[1]/@name with "Jim",
replace value of node /root/person[2]/@name with "John"
于 2012-08-28T10:26:22.200 回答
0

嗯,也许只是重建它并在 FLOWR 中进行更改?-->

element root {
    for $person at $i in doc('Sample.xml')/root/person
    let $new-name := if($i eq 1) then "Jim" else "John"
    return 
        element person {
            attribute name { $new-name },
            $person/*
        }
}
于 2012-08-28T07:25:51.493 回答