gpt4 book ai didi

xslt - 如何检测 XSLT 中的换行符

转载 作者:行者123 更新时间:2023-12-04 05:17:22 27 4
gpt4 key购买 nike

我需要能够输出由换行符分隔的 XML 文档的文本。换句话说,XML:

<programlisting>
public static void main(String[] args){
System.out.println("Be happy!");
System.out.println("And now we add annotations.");
}
</programlisting>

需要表示为:
<para>public static void main(String[] args){</para>
<para> System.out.println("Be happy!"); </para>
<para> System.out.println("And now we add annotations."); </para>
<para>}</para>

我认为我应该能够使用 substring-before(., '\n') 但由于某种原因它无法识别换行符。

我还尝试将每一行作为 CDATA 部分输出,以便我可以分别拉出它们,但遇到了这样一个事实,即它们都被混合到一个文本节点中。

我只是在这里使用常规 Java 进行转换。关于如何实现这一点的任何想法?

谢谢...

最佳答案

一、XSLT 2.0解决方案 :

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>

<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match="text()">
<xsl:for-each select="tokenize(., '\n\r?')[.]">
<para><xsl:sequence select="."></xsl:sequence></para>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:
<programlisting>
public static void main(String[] args){
System.out.println("Be happy!");
System.out.println("And now we add annotations.");
}
</programlisting>

产生了想要的正确结果:
<programlisting>
<para>public static void main(String[] args){</para>
<para> System.out.println("Be happy!");</para>
<para> System.out.println("And now we add annotations.");</para>
<para>}</para>
</programlisting>

二、 XSLT 1.0 解决方案,使用 str-split-to-words FXSL 模板:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ext="http://exslt.org/common" exclude-result-prefixes="ext">
<xsl:import href="strSplit-to-Words.xsl"/>
<xsl:output indent="yes" omit-xml-declaration="yes"/>

<xsl:strip-space elements="*"/>
<xsl:output indent="yes" omit-xml-declaration="yes"/>

<xsl:param name="pDelims" select="'&#xA;&#xD;'"/>

<xsl:template match="/">
<xsl:variable name="vwordNodes">
<xsl:call-template name="str-split-to-words">
<xsl:with-param name="pStr" select="/"/>
<xsl:with-param name="pDelimiters"
select="$pDelims"/>
</xsl:call-template>
</xsl:variable>

<xsl:apply-templates select=
"ext:node-set($vwordNodes)/*[normalize-space()]"/>
</xsl:template>

<xsl:template match="word">
<para><xsl:value-of select="."/></para>
</xsl:template>
</xsl:stylesheet>

当此转换应用于同一个 XML 文档(上图)时,会产生相同的正确结果 :
<para>public static void main(String[] args){</para>
<para> System.out.println("Be happy!");</para>
<para> System.out.println("And now we add annotations.");</para>
<para>}</para>

关于xslt - 如何检测 XSLT 中的换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14093485/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com