在下面的foreach中,我需要解析关键字的$ node.TextContent并在其周围包装粗体标签。这可能与DOM有关吗?怎么样?
$myContent ="<h1>This word should not be replaced: TEST</h1>. But this one should be replaced: test";
$dom = new DOMDocument;
$dom->loadHTML(strtolower($myContent));
$xPath = new DOMXPath($dom);
foreach($xPath->query("//text()[contains(.,'test') and not(ancestor::h1)]") as $node)
{
/*need to do a replace on each occurrence of the word "test"
in $node->textContent here so that it becomes <b>test</b>. How? */
}
echo $dom->saveHTML
应该产生:
<h1>This word should not be replaced: TEST</h1>.
But this one should be replaced: <b>test</b>"
答案 0 :(得分:1)
编辑:正如@LarsH注意到的那样,我没有注意到替换应该是粗体的要求。
有两种简单的方法可以解决这个问题:
0.1。 在转换中替换:
<xsl:value-of select="$pRep"/>
与
<b><xsl:value-of select="$pRep"/></b>
0.2。 传递为pReplacement
参数的值,而不仅仅是 "ABC"
,但 <b>ABC</b>
此XSLT 1.0转换:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="pTarget" select="'test'"/>
<xsl:param name="pReplacement" select="'ABC'"/>
<xsl:variable name="vCaps" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="vLowecase" select="'abcdefghijklmnopqrstuvwxyz'"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()[not(ancestor::h1)]">
<xsl:call-template name="replaceCI">
<xsl:with-param name="pText" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="replaceCI">
<xsl:param name="pText"/>
<xsl:param name="pTargetText" select="$pTarget"/>
<xsl:param name="pRep" select="$pReplacement"/>
<xsl:variable name="vLowerText"
select="translate($pText, $vCaps, $vLowecase)"/>
<xsl:choose>
<xsl:when test=
"not(contains($vLowerText, $pTargetText))">
<xsl:value-of select="$pText"/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="vOffset" select=
"string-length(substring-before($vLowerText, $pTargetText))"/>
<xsl:value-of select="substring($pText,1,$vOffset)"/>
<xsl:value-of select="$pRep"/>
<xsl:call-template name="replaceCI">
<xsl:with-param name="pText" select=
"substring($pText, $vOffset + string-length($pTargetText)+1)"/>
<xsl:with-param name="pTargetText" select="$pTargetText"/>
<xsl:with-param name="pRep" select="$pRep"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
应用于提供的XML文档(更正格式正确):
<html>
<h1>This word should not be replaced: TEST</h1>.
But this one should be replaced: test
</html>
产生想要的结果:
<html>
<h1>This word should not be replaced: TEST</h1>.
But this one should be replaced: ABC
</html>
请注意:
这是一种通用转换,它接受目标和替换文本作为参数。
替换是不区分大小写的,但我们假设目标参数以小写形式提供。
使用XSLT 2.0解决此问题更加容易。