https://zhidao.baidu.com/question/329434238357490445.html
函数原型:extern char *strchr(char *str,char character)
参数说明:str为一个字符串的指针,character为一个待查找字符。
所在库名:#include <string.h>
函数功能:从字符串str中寻找字符character第一次出现的位置。
返回说明:返回指向第一次出现字符character位置的指针,如果没找到则返回NULL。
其它说明:还有一种格式char *strchr( const char *string, int c ),这里字符串是以int型给出的。
我们把下面定义:
char character='k' ; //指定一个字符
改写成:
int character='k' ; //指定一个字符也同样能够实现
。
#include<stdio.h>
#include<string.h>
int main(void)
{
char shou[1000];
char show[1000][1000];
char *p = NULL;
char *q = NULL;
int i = 0;
int j;
printf("请输入字符串shou:");
gets(shou);
p = q = shou;
while(p = strchr(p,'#'))
{
strncpy(show[i],q,p-q);
show[i][p-q] = '\0';
p = p+1;
q = p;
i ++;
}
if (p == NULL)
{
strncpy(show[i],q,strlen(q));
show[i][strlen(q)] = '\0';
}
for(j = 0; j <= i; j++)
{
puts(show[j]);
}
}