该代码采用用户输入(html标签)
ex:
<p> The content is text only inside tag </p>
gets(str);
任务是将所有
出现的事件替换为newline("\n")
while((ptrch=strstr(str, " ")!=NULL)
{
memcpy(ptrch, "\n", 1);
}
printf("%s", str);
上面的代码仅将第一个字符替换为\n
.
查询是如何用空指针('\0')终止字符串的情况下如何用空字符常量替换整个字符\n
或如何将其余字符设置为空字符常量。nbsp;