vote up 2 vote down star

I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?

flag

5 Answers

vote up 16 vote down check

std::string has a constructor for this:

const char *s = "Hello, World!";
std::string str(s);

Just make sure that your char * isn't NULL, or else the behavior is undefined.

link|flag
what will happen if it is? – Carson Myers Jul 28 at 18:04
@Jesse What is your basis for saying such an exception is thrown? – Neil Butterworth Jul 28 at 18:14
@Neil, my implementation (gcc) does. I can't seem to find an official answer here. What is specified to happen? – Jesse Beder Jul 28 at 18:16
Undefined behaviour, or so I have always believed. I'll look it up. – Neil Butterworth Jul 28 at 18:17
3  
Standard says that the constructor parameter "shall not be a null pointer" - it doesn't specify that any exceptions are thrown. – Neil Butterworth Jul 28 at 18:22
show 3 more comments
vote up 4 vote down

I need to use std::string to store data retrieved by fgets().

Why using fgets() when you are programming C++? Why not std::getline()?

link|flag
vote up 2 vote down

If you already know size of the char*, use this instead

char* data = ...;
int size = ...;
std::string myString(data, size);

This doesn't use strlen.

link|flag
vote up 0 vote down

Pass it in through the constructur:

const char* dat = "my string!";
std::string my_string( dat );

You can use the function string.c_str() to go the other way:

std::string my_string("testing!");
const char* dat = my_string.c_str();
link|flag
3  
c_str() returns const char* – Steve Jessop Jul 28 at 18:00
right, you can't (shouldn't) modify the data in a std::string via c_str(). If you intend to change the data, then the c string from c_str() should be memcpy'd – Carson Myers Jul 28 at 18:06
vote up 0 vote down
char* data;
std::string myString(data);
link|flag
3  
THis will result in undefined behaviour. – Neil Butterworth Jul 28 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.