Code:
string get(char buffer[],int from, int until, int len)
{
    return string(buffer,from,until);
}
It gives me some weird handling exception: std:ut_of_memory!?

I thought strings can take up to 2GB of stuff...