Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
Use the c_str() method to get a const char* – ismail Dec 20 '11 at 16:38
2  
Have a look at the definition of String and see if there's a suitable function (like the c_str() member function of std::string) - hopefully there'll be some way to do what you want without messing around with C-style strings. Without knowing what String is, this question can't be answered. – Mike Seymour Dec 20 '11 at 16:40
1  
@Andrew why did you remove the arduino tag? That removed important information from the question! – R. Martinho Fernandes Dec 20 '11 at 16:45
1  
Writing multi-language source files is hard work. I suggest you stick to one of C or C++. – pmg Dec 20 '11 at 16:50

4 Answers

up vote 8 down vote accepted

How about you use substring instead. This will be less confusing than converting between different types of string.

http://arduino.cc/en/Reference/StringSubstring

share|improve this answer
Thanks, that worked! – phpnerd211 Dec 20 '11 at 16:49
+1 for recognizing Arduino String class instead of c++ std::string – Dave Rager Dec 20 '11 at 16:49

string has a c_str() member function that returns const char *.

share|improve this answer

you can do that easier. Since you're using C++:

tweet = tweet.substring(1);

substr() returns a part of the string back to you, as string. The parameter is the starting point of this sub string. Since string index is 0-based, 1 should clip off the first character.

If you want to use strstr you can just cast tweet into a c-string:

tweet = strstr( tweet.c_str(), "]" );

However, that's pretty inefficient since it returns a c-string which has to be turned into a std::string against in order to fit into tweet.

share|improve this answer

Using the following statement tweet.c_str() will return the string buffer, which will allow you to perform the edit you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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