vote up 7 vote down star
4

How can I convert an std::string to a char* or a const char*?

flag

71% accept rate

3 Answers

vote up 24 vote down check

If you just want to pass a std::string to a function that needs const char* you can use

std::string str;
const char * c = str.c_str();

If you want to get a writable copy, like char *, you can do that with this:

std::string str;
char * writable = new char[str.size() + 1];
std::copy(str.begin(), str.end(), writable);
writable[str.size()] = '\0'; // don't forget the terminating 0

// don't forget to free the string after finished using it
delete[] writable;

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

boost::scoped_array will delete the memory for you upon going out of scope:

std::string str;
boost::scoped_array<char> writable(new char[str.size() + 1]);
std::copy(str.begin(), str.end(), writable.get());
writable[str.size()] = '\0'; // don't forget the terminating 0

// get the char* using writable.get()

// memory is automatically freed if the smart pointer goes 
// out of scope

std::vector

This is the standard way (does not require any external library). You use std::vector, which completely manages the memory for you.

std::string str;
std::vector<char> writable(str.size() + 1);
std::copy(str.begin(), str.end(), writable.begin());

// get the char* using &writable[0] or &*writable.begin()
link|flag
Simply use char *result = strdup(str.c_str()); – Jasper Bekkers Dec 7 '08 at 20:33
you could, but strdup is not a c or c++ standard function, it's from posix :) – Johannes Schaub - litb Dec 7 '08 at 20:39
what i would probably prefer generally is std::vector<char> writable(str.begin(), str.end()); writable.push_back('\0'); char * c = &writable[0]; – Johannes Schaub - litb Dec 7 '08 at 20:42
1  
You could also construct the vector with: vector<char> writable(str.c_str(), str.size() + 1); – efotinis Dec 7 '08 at 21:08
1  
std::copy is the c++ way of doing this, without the need of getting at the string pointer. I try to avoid using C functions as much as i can. – Johannes Schaub - litb Dec 10 '08 at 3:29
show 5 more comments
vote up 4 vote down

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).

link|flag
you should note that data() returns const char * :) what you mean is &str[0], which returns a contiguous, but not necassary null terminated string. – Johannes Schaub - litb Dec 7 '08 at 19:44
@litb, Argh! That's what I get for trying to whip up a quick answer. I've used your solution in the past, don't know why it wasn't the first thing that came to mind. I've edited my answer. – Mark Ransom Dec 7 '08 at 19:54
Technically, std::string storage will be contiguous only in C++0x. – MSalters Dec 8 '08 at 10:04
@MSalters, thanks - I didn't know that. I'd be hard pressed to find an implementation where that wasn't the case, though. – Mark Ransom Dec 8 '08 at 20:04
note that &str[0] is always contiguous (also in c++03). but &*str.begin() is not (necassary). Sadly, I can't remember where i read about it (the standard has a bug here. it does miss a member function that could help avoiding confusion :)). – Johannes Schaub - litb Dec 10 '08 at 0:05
vote up 0 vote down

Thank you very much!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.