编写一个使用指针返回类型的函数,使用该函数在字符串中搜索一个子串,并返回第一个相匹配的子串指针
编写一个使用指针返回类型的函数,使用该函数在字符串中搜索一个子串,并返回第一个相匹配的子串指针。该函数的原型如下:char*GetSubstr(char*sub,char...
编写一个使用指针返回类型的函数,使用该函数在字符串中搜索一个子串,并返回第一个相匹配的子串指针。该函数的原型如下:
char * GetSubstr(char *sub, char *str);
测试程序:
#include <iostream>
using namespace std;
char * GetSubstr(char *sub, char *str)
{
//...请补充完整
}
int main()
{
char *substr;
substr=GetSubstr("two","One two three four five");
cout < <"找到的子串为:" < <substr < <endl;
return 0;
}
程序运行结果为:
找到的子串为:two three four five
这个函数怎么写呢?谢谢 展开
char * GetSubstr(char *sub, char *str);
测试程序:
#include <iostream>
using namespace std;
char * GetSubstr(char *sub, char *str)
{
//...请补充完整
}
int main()
{
char *substr;
substr=GetSubstr("two","One two three four five");
cout < <"找到的子串为:" < <substr < <endl;
return 0;
}
程序运行结果为:
找到的子串为:two three four five
这个函数怎么写呢?谢谢 展开
1个回答
展开全部
#include <iostream>
using namespace std;
char * GetSubstr(char *sub, char *str)
{
char *tem;
tem=str;
while(*tem!=*sub)
{
tem++;
}
return tem;
}
int main()
{
char *substr;
substr=GetSubstr("two","One two three four five");
cout<<"找到的子串为:"<<substr<<endl;
return 0;
}
using namespace std;
char * GetSubstr(char *sub, char *str)
{
char *tem;
tem=str;
while(*tem!=*sub)
{
tem++;
}
return tem;
}
int main()
{
char *substr;
substr=GetSubstr("two","One two three four five");
cout<<"找到的子串为:"<<substr<<endl;
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询