如何处理XSL中的非法HTML字符

如何处理XSL中的非法HTML字符,第1张

概述我有一个存储数据的 XML文件.我正在使用XSL从该 XML文件生成HTML文件.当我尝试这样做时,我得到错误非法HTML字符:十进制150 我不允许更改XML文件.我必须将一个和许多其他非法字符映射到XSL中的合法字符(可以是任何字符).因此,它必须以通用方式进行映射,而不仅仅是针对一种类型的字符. 您可以定义一个字符映射,将不允许的字符映射到允许的字符,例如空格: <xsl:output in 我有一个存储数据的 XML文件.我正在使用XSL从该 XML文件生成HTML文件.当我尝试这样做时,我得到错误非法HTML字符:十进制150

我不允许更改XML文件.我必须将一个和许多其他非法字符映射到XSL中的合法字符(可以是任何字符).因此,它必须以通用方式进行映射,而不仅仅是针对一种类型的字符.

解决方法 您可以定义一个字符映射,将不允许的字符映射到允许的字符,例如空格:

<xsl:output indent="yes" method="HTML" use-character-maps="m1"/><xsl:character-map name="m1">  <xsl:output-character character="&#150;" string=" "/></xsl:character-map>

作为替代方案,使用模板替换所有非法字符,根据http://www.w3.org/TR/xslt-xquery-serialization/#HTML_CHARDATA这些是控制字符#x7F-#x9F所以使用

<xsl:template match="text()">  <xsl:value-of select="replace(.,'[&#x007F;-&#x009F;]',' ')"/></xsl:template>

应该确保输入文档中文本节点中的那些字符被空格替换.

作为另一种选择,您可以考虑使用xhtml命名空间和输出方法xhtml中的元素输出xhtml.

根据字符列表,将所有非法控制字符映射到空格的完整字符映射是

<xsl:character-map                   name="no-control-characters">   <xsl:output-character character="&#127;" string=" "/>   <xsl:output-character character="&#128;" string=" "/>   <xsl:output-character character="&#129;" string=" "/>   <xsl:output-character character="&#130;" string=" "/>   <xsl:output-character character="&#131;" string=" "/>   <xsl:output-character character="&#132;" string=" "/>   <xsl:output-character character="&#133;" string=" "/>   <xsl:output-character character="&#134;" string=" "/>   <xsl:output-character character="&#135;" string=" "/>   <xsl:output-character character="&#136;" string=" "/>   <xsl:output-character character="&#137;" string=" "/>   <xsl:output-character character="&#138;" string=" "/>   <xsl:output-character character="&#139;" string=" "/>   <xsl:output-character character="&#140;" string=" "/>   <xsl:output-character character="&#141;" string=" "/>   <xsl:output-character character="&#142;" string=" "/>   <xsl:output-character character="&#143;" string=" "/>   <xsl:output-character character="&#144;" string=" "/>   <xsl:output-character character="&#145;" string=" "/>   <xsl:output-character character="&#146;" string=" "/>   <xsl:output-character character="&#147;" string=" "/>   <xsl:output-character character="&#148;" string=" "/>   <xsl:output-character character="&#149;" string=" "/>   <xsl:output-character character="&#150;" string=" "/>   <xsl:output-character character="&#151;" string=" "/>   <xsl:output-character character="&#152;" string=" "/>   <xsl:output-character character="&#153;" string=" "/>   <xsl:output-character character="&#154;" string=" "/>   <xsl:output-character character="&#155;" string=" "/>   <xsl:output-character character="&#156;" string=" "/>   <xsl:output-character character="&#157;" string=" "/>   <xsl:output-character character="&#158;" string=" "/>   <xsl:output-character character="&#159;" string=" "/></xsl:character-map>

我使用XSLT 2.0和Saxon生成了该列表

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/transform"  xmlns:xs="http://www.w3.org/2001/XMLSchema"  xmlns:axsl="http://www.w3.org/1999/XSL/transformAlias"  exclude-result-prefixes="xs axsl"><xsl:param name="start" as="xs:integer" select="127"/><xsl:param name="end" as="xs:integer" select="159"/><xsl:param name="replacement" as="xs:string" select="' '"/><xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/><xsl:output method="xml" indent="yes" use-character-maps="character-reference"/><xsl:character-map name="character-reference">  <xsl:output-character character="«" string="&amp;"/></xsl:character-map><xsl:template name="main">  <axsl:character-map name="no-control-characters">    <xsl:for-each select="$start to $end">      <axsl:output-character character="«#{.};" string="{$replacement}"/>    </xsl:for-each>  </axsl:character-map></xsl:template></xsl:stylesheet>
总结

以上是内存溢出为你收集整理的如何处理XSL中的非法HTML字符全部内容,希望文章能够帮你解决如何处理XSL中的非法HTML字符所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1087835.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存