Sorting cells as per ss:Index

廉价感情. 提交于 2019-12-02 13:59:24
 <xsl:template match="Row">

does not match anything in your input XML, because your input XML has a default namespace:

<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" 

You have already declared this namespace in your stylesheet and assigned it a prefix - now all you have to do is use it:

<xsl:template match="ss:Row">
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!