I would like to split one array of char containing two "strings "separated by '|' in two arays of char.
There is my sample code.
void splitChar(const char *text, char *text1, char *text2)
{
for (;*text!='\0' && *text != '|';) *text1++ = *text++;
*text1 = '\0';
for (;*++text!='\0';) *text2++ = *text;
*text2 = '\0';
}
int main(int argc, char* argv[])
{
char *text = "monday|tuesday", text1[255], text2 [255];
splitChar (text, text1, text2);
return 0;
}
I am having to questions:
A] How to further improve this code in C (for example rewrite it in 1 for cycle).
B) How to rewrite this code in C++ so as to grasp the potential of C++ as much as possible...
Thanks for your code and samples...