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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Just make sure that your |
|||||||||||||
|
|
If you already know size of the char*, use this instead
This doesn't use strlen. EDIT: If string variable already exists, use assign():
|
|||||
|
Why using |
|||
|
|
|
|||||||
|
|
Pass it in through the constructur:
You can use the function string.c_str() to go the other way:
|
|||||||
|
|
|||
|
|