Manuel wrote:
> Hi, I need to convert a text file in a string or char*. exists some
> function that does it? or how can i do it?
If you're talking about copying the contents of a istream into a string,
then one way to do it is to use an ostringstream. You can insert the
streambuf pointer from the istream into the ostringstream and then get
the string from that. For example:
#include <fstream>
#include <string>
#include <sstream>
int main()
{
std::ifstream in("textfile.txt");
std:

stringstream out;
out << in.rdbuf();
std::string s = out.str();
return 0;
}
Hope this helps,
Nate