當我嘗試使用Saxon 9.1.0.8或Saxon-HE 9.5.1.3J運行此XSLT樣式表(從http://www.oxygenxml.com/archives/xsl-list/201001/msg00361.html改編而來)時,我得到一個空的輸出文件。撒克遜人的用法:recognise-binary
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://saxon.sf.net/" version="2.0">
<xsl:output saxon:recognize-binary="yes" method="text"/>
<xsl:template match="/">
<?hex 07?>
<xsl:processing-instruction name="hex" select="'07'"/>
</xsl:template>
</xsl:stylesheet>
從Saxon documentation和上面提到的消息,我會預期該輸出是含有一個(或兩個)^G
字符的字符串。爲什麼我根本沒有得到任何產出?
請詳細說明你的問題。目前還不清楚你在詢問什麼 – hek2mgl