С предоставленным XML-документом используйте :
/*/*/*[Pagetype = 'Parent']/Pagetitle
XSLT-подтверждение на основе :
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/">
<xsl:copy-of select="/*/*/*[Pagetype = 'Parent']/Pagetitle"/>
</xsl:template>
</xsl:stylesheet>
, когда этопреобразование применяется к предоставленному XML-документу :
<dsQueryResponse>
<Rows>
<Row>
<Title>1</Title>
<Pagetype>Parent</Pagetype>
<Pagetitle>title of page</Pagetitle>
</Row>
</Rows>
</dsQueryResponse>
вычисляется выражение XPath и выводятся все (в данном случае только один) выбранные узлы :
<Pagetitle>title of page</Pagetitle>