This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Matching Text that may have white-space prefix and append


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]