I am little poor in typecasting. I have a string in xmlChar*
(which is unsigned char*), I want to convert this unsigned char to a std::string
type.
xmlChar* name = "Some data";
I tried my best to typecast , but I couldn't find a way to convert it.
See Question&Answers more detail:os