XSL:修改 XML 中的内容

发布于 2024-11-19 23:13:48 字数 522 浏览 1 评论 0原文

我有一个 XML,其中有另一个 XML(在 CDATA 内)。现在我想修改子XML的内容。怎么可能呢?

在下面的 XML 中,如果地址类型是家庭,我想将其更改为“01”。 XSLT 1.0 中可能吗?

<?xml>
 <a>
   <b>This is Parent</b>
   <c>
     <![CDATA[
       <?xml>
         <a1>This is Child XML></a1>
         <person_address type="Home">
           <street>ABCDStreet</street>
           <city/>
           <country/>
         </person_address>
     ]]>
  </c>
</a>

I have a XML in which there is another XML (within CDATA). Now I want to modify the content of child XML. How is it possible?

In the below XML, If Address Type is Home, I want to change it to "01".
Is it possible in XSLT 1.0??

<?xml>
 <a>
   <b>This is Parent</b>
   <c>
     <![CDATA[
       <?xml>
         <a1>This is Child XML></a1>
         <person_address type="Home">
           <street>ABCDStreet</street>
           <city/>
           <country/>
         </person_address>
     ]]>
  </c>
</a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

孤檠 2024-11-26 23:13:48

正如上面评论中的链接问题所述,您不能将 CDATA 的内容视为 XML,它是纯文本。

想到的第一个简单的解决方案(不是说最好的):在您的情况(XSLT 1.0 和简单的文本替换)中,您可以使用一些 EXSLT 扩展模板,例如 replace() 来将字符串与正则表达式进行匹配并将其替换为所需的值。

As described in the linked question above in the comment, you can't treat the content of CDATA as XML, it is pure text.

First easy solution coming into mind (not saying the best one): in your case (XSLT 1.0 and simple text replacement) you could use some EXSLT extension template like replace() to match the string against a regex and replace it with the wanted value.

亣腦蒛氧 2024-11-26 23:13:48

您需要提取 CDATA 部分的文本并将其传递给 XML 解析器进行处理。某些 XSLT 处理器具有执行此操作的扩展函数,例如 saxon:parse(),或者您也可以使用 Java 或 Javascript 编写自己的函数。

You need to extract the text of the CDATA section and pass it to an XML parser for processing. Some XSLT processors have an extension function to do this, for example saxon:parse(), or you may be able to write your own in Java or Javascript, for example.

情愿 2024-11-26 23:13:48

CDATA 部分中包含的任何内容都不是标记——它只是一维文本。

要么将其作为文本处理(这既丑陋又不方便),要么编写一个扩展函数,将其参数解析为 XmlDocument 并返回此结果。然后您可以使用 XSLT 处理结果:

 <xsl:apply-templates select="my:parse(theString)/*"/>

当然,要使其正常工作,您必须确保传递给 my:parse() 扩展函数的文本是格式良好(序列化)的 XML 文档——在你的例子中它不是。

Anything contained in a CDATA section isn't markup -- it is just 1-dimensional text.

Either process it as text (which is ugly and inconvenient), or write an extension function that parses its argument to an XmlDocument and returns this result back. Then you can process the result with XSLT:

 <xsl:apply-templates select="my:parse(theString)/*"/>

Of course, for this to work you must ensure that the text passed to the my:parse() extension function is a well-formed (serialization of) XML document -- which in your example it isn't.

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