I have a variable tweet that is a string and it has a character at the very beginning that I want to clip off.
So what I want to do is use strstr() to remove it. Here's my code:
tweet = strstr(tweet, "]");
However, I get this error:
cannot convert 'String' to 'const char*' for argument '1' to
'char' strstr(const char*, const char*)
So my thought would be to convert tweet into a char. How would I go about doing so?
c_str()method to get aconst char*– ismail Dec 20 '11 at 16:38Stringand see if there's a suitable function (like thec_str()member function ofstd::string) - hopefully there'll be some way to do what you want without messing around with C-style strings. Without knowing whatStringis, this question can't be answered. – Mike Seymour Dec 20 '11 at 16:40