2

Possible Duplicate:
How do I tokenize a string in C++?

So I am trying to parse a string and remove each individual word and store it into a char*.

Example:

string theString = "The quick brown fox.";

Turns into:

char* c1 = "The"
char* c2 = "quick"
char* c3 = "brown"
char* c4 = "fox."

I tried converting the string to a char* using c_str() but ran into compiling error saying: "invalid conversion from 'const char*' to 'char*'.

Any ideas how to fix this then parse the converted cstring?

Community
  • 1
  • 1
trev9065
  • 3,371
  • 4
  • 30
  • 45

0 Answers0