Subject: How Do I Select A Section of XML Based On A Code Value
From: "Gary Fix" <gary.fix@xxxxxxxxxx>
Date: Wed, 25 Feb 2004 07:17:27 -0800
|
Hi,
I have an xml something like this:
<VehInfo>
<ModelYear>2004</ModelYear>
<Model>Ford</Model>
<UsageInfo>
<UsageInfoCode>Work</UsageInfoCode>
</UsageInfo>
</VehInfo>
<VehInfo>
<ModelYear>1994</ModelYear>
<Model>Toyota</Model>
<UsageInfo>
<UsageInfoCode>Pleasure</UsageInfoCode>
</UsageInfo>
</VehInfo>
and want to transform this into xml using xsl, selecting the correct section based on the <UsageInfoCode> tag. For example, if I am to select using an "UsageInfoCode" of "Work", then I want the output xml to look like this:
<VehInfo>
<ModelYear>2004</ModelYear>
<Model>Ford</Model>
</VehInfo>
Any help would be greatly appreciated!
thanks....gary...
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|