Subject: RE: Matching Text that may have white-space prefix and append
From: Bassi Suk <bassi.s@xxxxxxxxxx>
Date: Wed, 8 Nov 2000 10:30:09 -0500
|
I have a problem where l need to filter elements based on their element
content.
For example:
<root>
<contact>
<name>
Suk.
</name>
<phone>
12345
</phone>
</contact>
<contact>
<name>
Bassi.
</name>
<phone>
67890
</phone>
</contact>
</root>
if l tried:
<xsl:apply-templates select="//phone[(../name)='Suk.']"/>
l would get back zero results.
This is because the XSLT processor does not ignore the space between <name>
and Suk. and </name>.
Is this the fault of the processor, or is there another way of doing this?
Thanks.
Suk.
*****************************************************************
DISCLAIMER: The information contained in this e-mail may be confidential
and is intended solely for the use of the named addressee. Access, copying
or re-use of the e-mail or any information contained therein by any other
person is not authorized. If you are not the intended recipient please
notify us immediately by return e-mail to the originator.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|