Tagged Questions
The c-str tag has no wiki summary.
9
votes
3answers
1k views
What's the difference between std::string::c_str and std::string::data?
Why would I ever want to call std::string::data() over std::string::c_str()? Surely there is some method to the standard's madness here...
4
votes
4answers
584 views
Returning c_str from a function
This is from a small library that I found online:
const char* GetHandStateBrief(const PostFlopState* state)
{
static std::ostringstream out;
... rest of the function ...
return ...
2
votes
3answers
764 views
C++ c_str doesn't return entire string
I've tried the following code with both normal ifstreams and the current boost:iostream I'm using, both have the same result.
It is intended to load a file from physfs into memory then pass it to a ...
1
vote
4answers
90 views
what is use of C_str() function in C/C++
Can anybody tell me what is the use of c_str() function in C/C++?.
In which case it is necessary to use it?.
1
vote
5answers
128 views
Setting a char array with c_str()?
char el[3] = myvector[1].c_str();
myvector[i] is a string with three letters in. Why does this error?
1
vote
5answers
242 views
.c_str() weirdness? Data changes without rhyme or reason?
I have this simple function:
const wchar_t *StringManager::GetWCharTStar(int stringId)
{
std::wstring originalString = StringManager::GetString(stringId);
const wchar_t *retStr = ...
0
votes
1answer
2k views
How to make String to const wchar_t* conversion function work under Windows and Linux
I work on a project written for MSVCC / Windows, that I have to port to GCC / Linux. The Project has its own String Class, which stores its Data in a QString from Qt. For conversion to wchar_t* there ...