i have one problem
in my XML file i have CData like this
<college name="JDSVM" id="121" >
<![CDATA[
53 26100
]]>
<Comment>
<![CDATA[
front jounce bumper
]]>
</college>
in my XSL file, for taking the value of name and id, i used
<xsl:value-of select="college/@name"/>
<xsl:value-of select="college/@id"/>
now for selecting the above CDATA section i used
<xsl:value-of select="college/."/>
but this line show CDATA sections along with Comment part, it looks
like this...
53 26100 front jounce bumper
can anyone tell me how can we select only 53 26100 part?
in my XML file i have CData like this
<college name="JDSVM" id="121" >
<![CDATA[
53 26100
]]>
<Comment>
<![CDATA[
front jounce bumper
]]>
</college>
in my XSL file, for taking the value of name and id, i used
<xsl:value-of select="college/@name"/>
<xsl:value-of select="college/@id"/>
now for selecting the above CDATA section i used
<xsl:value-of select="college/."/>
but this line show CDATA sections along with Comment part, it looks
like this...
53 26100 front jounce bumper
can anyone tell me how can we select only 53 26100 part?
Comment