暂无描述

remove_tables_by_needle.xsl 646B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet
  3. version="1.0"
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
  6. <xsl:template match='@*|node()'>
  7. <xsl:copy>
  8. <xsl:apply-templates select='@*|node()'/>
  9. </xsl:copy>
  10. </xsl:template>
  11. <xsl:template match="//w:tbl">
  12. <xsl:choose>
  13. <xsl:when test="w:tr/w:tc/w:p/w:r/w:t[contains(., $needle)]"/>
  14. <xsl:otherwise>
  15. <xsl:copy>
  16. <xsl:apply-templates select='@*|node()'/>
  17. </xsl:copy>
  18. </xsl:otherwise>
  19. </xsl:choose>
  20. </xsl:template>
  21. </xsl:stylesheet>