string manipulation in xsl - concatinating
-
Hi, Could someone plz help in generating the out put from the xml given below...
The XML Input is given below
-
<Assessment>
-
<Respiratory>
<Forced>false</Forced>
<Irregular>false</Irregular>
<Kussmal>true</Kussmal>
<Labored>true</Labored>
<NasalFlaring>true</NasalFlaring>
<Normal>false</Normal>
<Rapid>false</Rapid></Respiratory>
</Assessment>
The Output should be the following (based on the value of true/false) as
HTML..Respiratory condition: Kussmal condition,Labored condition, Nasal Flaring
-
-
Hi, Could someone plz help in generating the out put from the xml given below...
The XML Input is given below
-
<Assessment>
-
<Respiratory>
<Forced>false</Forced>
<Irregular>false</Irregular>
<Kussmal>true</Kussmal>
<Labored>true</Labored>
<NasalFlaring>true</NasalFlaring>
<Normal>false</Normal>
<Rapid>false</Rapid></Respiratory>
</Assessment>
The Output should be the following (based on the value of true/false) as
HTML..Respiratory condition: Kussmal condition,Labored condition, Nasal Flaring
Try the XSLT Tutorials at www.w3schools.com, the are tailored to beginners.
-