到目前为止,这是我的代码,我仍然需要弄清楚如何添加'\0'
到字符串的末尾并将 nextindex 推进到下一个单词的开头。
* inputs: str - the string,
* if str is NULL, return the index of the next word in the string
* AND place a '\0' at the end of that word.
*/
int nextword(char *str)
{
// create two static variables - these stay around across calls
static char *s;
static int nextindex;
int thisindex;
// reset the static variables
if (str != NULL)
{
s = str;
thisindex = 0;
// TODO: advance this index past any leading spaces
while (s[thisindex]=='\n' || s[thisindex]=='\t' || s[thisindex]==' ' )
thisindex++;
}
else
{
// set the return value to be the nextindex
thisindex = nextindex;
}
// if we aren't done with the string...
if (thisindex != -1)
{
// TODO: two things
// 1: place a '\0' after the current word
// 2: advance nextindex to the beginning
// of the next word
}
return thisindex;
}
我想要以下代码
char *str = "Welcome everybody! Today is a beautiful day\t\n";
int i = nextword(str);
while(i != -1)
{
printf("%s\n",&(str[i]));
i = nextword(NULL);
}
输出
Welcome
everybody!
Today
is
a
beautiful
day