Hello,
Is there any function available to convert XalanDomString to STL String in Xalan C.
Right now, I am doing like this to convert to string.
vector<char> chVec = arXalanDomStr.transcode();
string res;
string res;
for( int i=0; chVec[i] !='\0'; i++)
res += chVec[i];
res += chVec[i];
If you have any better ideas, please let me know. Thanks in adavance.
regards,
Cheluus.
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
