How can I convert an std::string to a char* or a const char*?
|
|
If you just want to pass a
If you want to get a writable copy, like
Edit: Notice that the above is not exception safe. If anything between the new call and the delete call throws, you will leak memory, as nothing will call delete for you automatically. There are two immediate ways to solve this. boost::scoped_array
std::vectorThis is the standard way (does not require any external library). You use std::vector, which completely manages the memory for you.
|
||||||||||||||
|
|
|
Use the .c_str() method for const char *. You can use &mystring[0] to get a char * pointer, but there are a couple of gotcha's: you won't necessarily get a zero terminated string, and you won't be able to change the string's size. You especially have to be careful not to add characters past the end of the string or you'll get a buffer overrun (and probable crash). |
||||||||||
|
|
|
Thank you very much! |
||
|
|
