テキストノードの文字列に一致した要素の取得(xPath
xml,xslを勉強しているのですが、xPathの指定が上手く定義できない状態です。ご教授の程お願い致します。
下記がxml,xslです
<!-- アーティスト名とタイトルを明記したxml -->
-- music.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="music.xsl"?>
<music>
<artist>
Ciel
<title>wake</title>
</artist>
<artist>
Flew
<title>BANG</title>
</artist>
<artist>
cobu // (1)
<title>calling</title>
</artist>
<artist>
cobukure
<title>dammy</title>
</artist>
</music>
<!-- 条件に一致したアーティスト名、タイトルを表示するxsl -->
-- music.xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head><title></title></head>
<body>
<xsl:for-each select = "descendant::artist[contains(text(),'cobu')]"> // (2)
<xsl:value-of select ="text()" />:
<xsl:value-of select ="title" /><br/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
//上記の処理結果
cobu :calling
cobukure :dammy
//希望する処理結果
cobu :calling
・質問内容
XMLのartistのテキストノード=cobuをxsl:for-eachでselectして、
titleのcallingを表示したい
本、サイトなどで調べて、
descendant::artist[contains(text(),'cobu')]のxPathまでは、
導けたのですが、この場合は、cobuを含むので、
artistのテキストノード=cobukureもselectされdummyが表示されてしまいます。
処理結果、
cobu :callingのみselectできるxPathの定義をご教授の程お願い致します