如何匹配XSLT中的处理指令元素?
我的 xml 内容中有一些处理指令元素,例如:
<?legalnoticestart?>
<?sourcenotestart?>
<para>Content para</para>
<?sourcenoteend?>
<?literallayoutstart?>
<para>body content </para>
<?literallayoutend?>
<?legalnoticeend?>
如何匹配这些元素并获取以下所需元素格式的内容?
所需的 xml:
<legalnotice>
<sourcenote>
<p>Content para</p>
</sourcenote>
<literallayout>
<p>body content</p>
</literallayout>
</legalnotice>
请提供建议...
最诚挚的问候, 安东尼
I have some processing-instructions elements inside my xml content, for example :
<?legalnoticestart?>
<?sourcenotestart?>
<para>Content para</para>
<?sourcenoteend?>
<?literallayoutstart?>
<para>body content </para>
<?literallayoutend?>
<?legalnoticeend?>
How can i match these elements and get the content in the below required element format?
Required xml:
<legalnotice>
<sourcenote>
<p>Content para</p>
</sourcenote>
<literallayout>
<p>body content</p>
</literallayout>
</legalnotice>
Please advice....
Best Regards,
Antony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,XSLT 处理器将忽略 PI - 为了匹配它们以完成有趣且有用的事情,您可以在模板中使用处理指令匹配:
例如,以下样式表:
使用此文件:
产量:
By default, an XSLT processor will ignore PIs - to match them in order to do fun and useful things, you can use the processing-instruction match in your template:
For example, the following Stylesheet:
With this document:
Yields:
这本质上是一个糟糕的设计,您似乎试图匹配开始/结束标记,但没有使用可用的方法(如果您要使用实际的 xml 元素)。
虽然您可以匹配开始/结束处理指令,但使用 xpath 很难找到所述处理指令之间的节点。如果你有嵌套或重复这样的指令,它可能会变得更加困难。归根结底,这一切都是为了在不使用 xml 的情况下复制 xml 已经做的事情?
This is inherently a bad design, you seem to be trying to match start/end tags but without using the methods available to if you were to use an actual xml element.
Whilst you can match the start/end processing instructions its difficult with xpath to locate the nodes between said processing instructions. If you have nesting or repeated such instructions it can become even more difficult. And at the end of the day, all this is doing is trying to replicate what xml already does without using xml?