XSLT从Excel XML电子表格中提取数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XSLT从Excel XML电子表格中提取数据相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" /> <xsl:variable name="title" select="/Workbook/Worksheet/@Name"/> <xsl:template match="/"> <html><head><title>Leisure Timetable</title></head> <body> <h1><xsl:value-of select="$title"/></h1> <xsl:apply-templates select="Workbook/Worksheet"/> </body> </html> </xsl:template> <xsl:template match="Worksheet"> <xsl:apply-templates select="Table"/> </xsl:template> <xsl:template match="Table"> <table border="1"> <xsl:apply-templates select="Row"/> </table> </xsl:template> <xsl:template match="Row"> <tr> <xsl:for-each select="Cell"> <td><xsl:value-of select="." /></td> </xsl:for-each> </tr> </xsl:template> </xsl:stylesheet>
以上是关于XSLT从Excel XML电子表格中提取数据的主要内容,如果未能解决你的问题,请参考以下文章
将 Excel 电子表格中的数据提取到 Ruby 中的数据库中
如何使用ruby中的电子表格gem从excel单元格中提取超链接地址?