Hi,
As of now, I have a work around.
I am using another function to get the whole node string and strip the
tag. I know it may not give the accurate result always. However, now
it is working for most of the cases.
Code:
? striptag( mxmlSaveAllocString( hElement, MXML_NO_CALLBACK ),
'link:label' )
function striptag( cStr, cTag )
local nEnd := rat( '</' + cTag + '>', cStr )
local nStart := rat( '">', cStr )
if nStart > 0 .and. nEnd > 0
return substr ( cStr, nStart + 2, nEnd - ( nStart + 2 ) )
else
return cStr
endif
return nil
On Oct 13, 11:26 pm, rathinagiri subbiah <
srathinag...@gmail.com>
wrote: