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?
|
|
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> |
||||
|
|
|
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. |
||||
|
|
|
I have no idea why you'd want to do such a thing, but try this:
|
|||||||||||||
|
|
The following will work...
|
|||||
|
|
|
User-defined literals in C++11, a much needed addition or making C++ even more bloated? presents an elegant answer: Define
then you can create your string this way:
or even so:
There's an "old style" way:
then you can define
|
||||
|
|
|
Better to use std::vector<char> if this question isn't just for educational purposes. |
||||
|
|
|
You'll have to be careful with this. If you replace 'b' with any numeric character, you will silently create the wrong string using most methods. See: C++ string literals escape character. For example, I dropped this innocent looking snippet in the middle of a program
Here is what this program output for me:
That was my first print statement twice, several non-printing characters, followed by a newline, followed by something in internal memory, which I just overwrote (and then printed, showing that it has been overwritten). Worst of all, even compiling this with thorough and verbose gcc warnings gave me no indication of something being wrong, and running the program through valgrind didn't complain about any improper memory access patterns. In other words, it's completely undetectable by modern tools. You can get this same problem with the much simpler Fortunately, C++11 gives us a good solution to the problem using initializer list syntax. This saves you from having to specify the number of characters (which, as I showed above, you can do incorrectly), and avoids combining escaped numbers. |
||||
|
|
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.
|
||||
|
|
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. |
|||||||||||||||
|