如何从文本中提取超链接



我的xml有以下元素:

<output_citation>C. T. Pan, R. R. Nair, U. Bangert, Q. Ramasse, R. Jalil, R. Zan, C. R. Seabourne, and A. J. Scott. (2012). Nanoscale electron diffraction and plasmon spectroscopy of single- and few-layer boron nitride. <em>Physical Review B</em>, 85(4), 045440.  eScholarID:<a class="escholarid"
        href="http://www.blah.ac.uk/escholar/uk-ac-blah-scw:205189">205189</a> | DOI:<a class="doi" href="http://dx.doi.org/10.1103/PhysRevB.85.045440">10.1103/PhysRevB.85.045440</a></output_citation>

使用XSLT 1.0我需要提取这两个超链接,并将它们显示为可点击的链接。我已经设法提取第一个使用:

<xsl:variable name="urlEscholarId" select="output_citation/a/@href"> </xsl:variable>
<xsl:variable name="labelEscholarId" select="substring-after($urlEscholarId,'scw:')">       </xsl:variable>
 <a>
<xsl:attribute name="href"> 
<xsl:value-of select="$urlEscholarId"/>
</xsl:attribute>
<xsl:value-of select="$labelDoiId"/>
</a>

这给了我:

<a href="http://www.blah.ac.uk/escholar/uk-ac-blah-scw:205189">205189</a>

我似乎无法提取第二个,以及如何输出上面的文本EXCLUDING th eurls?

非常感谢

注意:这些解决方案展示了如何孤立地执行任务。这可能与现有的XSLT样式表配合使用,也可能不配合使用。如果没有,您将不得不透露更多的代码。

1输出HTML链接

也许根本不需要for-each循环或变量(无论如何,它们在某种程度上违背了XSLT的功能性)。要找到这两个链接,只需编写一个模板来匹配a元素,创建一个新的a元素(或复制现有元素),并复制href属性和原始a元素的文本内容。

我认为class属性不应该出现在输出中。

样式表

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes" />
    <xsl:template match="a">
        <a>
            <xsl:copy-of select="@href|text()"/>
        </a>   
    </xsl:template>
    <xsl:template match="text()"/>
</xsl:transform>

XML输出

<?xml version="1.0" encoding="utf-8"?>
<a href="http://www.blah.ac.uk/escholar/uk-ac-blah-scw:205189">205189</a>
<a href="http://dx.doi.org/10.1103/PhysRevB.85.045440">10.1103/PhysRevB.85.045440</a>

2只输出文本内容

以及如何输出上述文本排除网址?

这是一项不同的任务,但也很容易单独解决。这将输出除作为a元素的子元素的文本节点外的所有文本。

样式表

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" omit-xml-declaration="yes" indent="yes" /> 
    <xsl:template match="a/text()"/>
</xsl:transform>

文本输出

C。T.Pan、R.R.Nair、U.Bangert、Q.Ramasse、R.Jalil、R.Zan、C.R.Seabourne和A.J.Scott。(2012)。单层和少层氮化硼的纳米级电子衍射和等离子体光谱。物理评论B,85(4),045440。eSchoralID:|DOI:

相关内容

  • 没有找到相关文章

最新更新