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]

Complex expression problem...


How do I say

__________________________________
for each customer where....
	the value of "name" begins with "a"
	and
	the value of "city" begins with "p"
	and
	the value of "zip" begins with "9"
output their field values
(that is for each one that matches the criteria, give me their records)
__________________________________
	

the xml is below.....


<customers>
	<customer>
		<customer_id>ALFKI</customer_id>
		<company_name>Alfreds Futterkiste</company_name>
		<contact_name>Maria Anders</contact_name>
		<contact_title>Sales Representative</contact_title>
		<address>Obere Str. 57</address>
		<city>Berlin</city>
		<region></region>
		<postal_code>12209</postal_code>
		<country>Germany</country>
		<phone>030-0074321</phone>
		<fax>030-0076545</fax>
	</customer>
	<customer>
		<customer_id>AROUT</customer_id>
		<company_name>Around the Horn</company_name>
		<contact_name>Thomas Hardy</contact_name>
		<contact_title>Sales Representative</contact_title>
		<address>120 Hanover Sq.</address>
		<city>London</city>
		<region></region>
		<postal_code>WA1 1DP</postal_code>
		<country>UK</country>
		<phone>(171) 555-7788</phone>
		<fax>(171) 555-6750</fax>
	</customer>
	
	etc.......

</customers>


 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]