INPUT
"hi all i need an xslt to replace < symbol to <: in the particular node of an xml, how can i achieve this."
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adm="http://axn/someurl/">
<soapenv:Header/>
<soapenv:Body>
<adm:Access>
<String1> <log item='value' price='fixed'/></String1>
<String2><US/></String2>
</adm:Access>
</soapenv:Body>
</soapenv:Envelope>
OUTPUT
"this is wat finally i need. replcing < with < at node0 and node1.i need to replace only "<" but not ">" symbol"
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:axn="http://axn/someurl/">
<soapenv:Header/>
<soapenv:Body>
<axn:Access>
<node0><log item='value' price="fixed" /></node0>
<node1><US /></node1>
</axn:Access>
</soapenv:Body>
</soapenv:Envelope>
"have tried to parse the content of node0 and node1 as text with and replace but it dint work"