I am converting clob to xmltype in plsql as below.
xml xmltype := xmltype(Input);
Input variables contains the text as below
<request xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<comment>Hello, this is "james"</comment>
</request>
After the xmltype conversion the text is changed to Hello, this is "james""
When tried to extract the xml from xmltype I need to extract the text as Hello, this is "james"
.
Xmlcast