我正在使用 XSLT 从专利商标局的商标 XML 文件中提取一些数据。基本上没问题,除了一个空行。我可以用一个适度丑陋的解决方法来摆脱它,但我想知道是否有更好的方法。
这是我的 XSLT 的一个子集:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tm="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:pto="urn:us:gov:doc:uspto:trademark:status">
<xsl:output method="text" encoding="utf-8" />
<xsl:strip-space elements="*"/>
<xsl:template match="tm:Transaction">
<xsl:apply-templates select=".//tm:TradeMark"/>
<xsl:apply-templates select=".//tm:ApplicantDetails"/>
<xsl:apply-templates select=".//tm:MarkEvent"/>
</xsl:template>
<xsl:template match="tm:TradeMark">
MarkCurrentStatusDate,"<xsl:value-of select="normalize-space(tm:MarkCurrentStatusDate)"/>"<xsl:text/>
ApplicationNumber,"<xsl:value-of select="normalize-space(tm:ApplicationNumber)"/>"<xsl:text/>
ApplicationDate,"<xsl:value-of select="normalize-space(tm:ApplicationDate)"/>"<xsl:text/>
RegistrationNumber,"<xsl:value-of select="normalize-space(tm:RegistrationNumber)"/>"<xsl:text/>
RegistrationDate,"<xsl:value-of select="normalize-space(tm:RegistrationDate)"/>"<xsl:text/>
<xsl:apply-templates select="tm:WordMarkSpecification"/>
<xsl:apply-templates select="tm:TradeMarkExt"/>
<xsl:apply-templates select="tm:PublicationDetails"/>
<xsl:apply-templates select="tm:RepresentativeDetails"/>
</xsl:template>
<xsl:template match="tm:WordMarkSpecification">
MarkVerbalElementText,"<xsl:value-of select="normalize-space(tm:MarkVerbalElementText)"/>"<xsl:text/>
</xsl:template>
它还有一些模板,但这就是它的要点。我总是在输出的最开始,在任何数据之前得到一个空行;我没有得到任何其他空白行。我的规避是将两条线结合起来:
<xsl:template match="tm:TradeMark">
MarkCurrentStatusDate,"<xsl:value-of select="normalize-space(tm:MarkCurrentStatusDate)"/>"<xsl:text/>
成一行:
<xsl:template match="tm:TradeMark">MarkCurrentStatusDate,"<xsl:value-of select="normalize-space(tm:MarkCurrentStatusDate)"/>"<xsl:text/>
这行得通,如果没有更好的方法,我想我可以接受,但它似乎不雅,对我来说就像一个杂物。其他模板都不需要这种处理(例如 tm:WordMarkSpecification 模板或之后的另外六个模板)),我很困惑为什么这里需要它。有任何想法吗?
因为我可以在 XSLT 中看到插入空行的特定点,所以我认为提供我正在测试的 XML 没有帮助,但如果您确实需要查看它,您可以在https://tsdrapi获得它.uspto.gov/ts/cd/casestatus/rn2178784/download.zip;它是该存档中的 XML 文件。