If I want to construct a std::string with a line like:
std::string my_string("a\0b");
Where i want to have three characters in the resulting string (a, null, b), I only get one. What is the proper syntax?
|
feedback
|
|
The problem is the std::string constructor that takes a const char* assumes the input is a C string. C strings are '\0' terminated and thus parsing stops when it reaches the '\0' character. To compensate for this you need to use the constructor that builds the string from a char array (not a C-String). This takes two parameters a pointer to the array and a length:
Note: C++ std::string is NOT '\0' terminated (as suggested in other posts). Though you can extract a pointer to an internal buffer that contains a C-String with the method c_str(). Also check out Doug .T below about using a vector<char> | ||||
|
feedback
|
|
If you are doing manipulation like you would with a c-style string (array of chars) consider using
You have more freedom to treat it like an array in the same manner you would treat a c-string. You can use copy() to copy into a string:
and you can use it in many of the same places you can use c-strings
Naturally, however, you suffer from the same problems as c-strings. You may forget your null terminal or write past the allocated space. | ||||
|
feedback
|
|
I have no idea why you'd want to do such a thing, but try this:
| |||||||||||||
feedback
|
|
The following will work...
| |||||
|
feedback
|
|
Better to use std::vector<char> if this question isn't just for educational purposes. | ||||
|
feedback
|
|
I know it is a long time this question has been asked. But for anyone who is having a similar problem might be interested in the following code.
| ||||
|
feedback
|
|
Almost all implementations of std::strings are null-terminated, so you probably shouldn't do this. Note that "a\0b" is actually four characters long because of the automatic null terminator (a, null, b, null). If you really want to do this and break std::string's contract, you can do:
but if you do, all your friends will laugh at you, you will never find true happiness. | |||||||||||||
feedback
|