My XML is like bellow
<?xml version="1.0" encoding="UTF-8"?>
<Students>
<![CDATA[<?xml version="1.0" encoding="UTF-8"?> <Student><rno>1</rno><name>xyz</name> </student>]]>
</Students>
with the help of XSL i want to retrieve the value of rno which is present inside cdata section. How I can read this value
First of all, in your xml you should replace
</student>by</Student>.Because XML tags are case sensitive reference here.
The trick to do that on your own is the following :
Hope it helps 😉