C++求:求一个字母在一字符串中首次出现的位置
4个回答
展开全部
下面C程序可用于c++
给定字母在s里
字符串在str里
位置从1起算
字符串中无给定字母,则打印Can not find the letter....
#include <stdio.h>
#include <stdlib.h>
void main ()
{
char str[] ="This a sample string.";
char s[] = "a";
int len,i;
len = strlen(str);
for (i=0;i<len;i++){
if (strncmp(&str[i],&s[0],1) == 0){
printf("location: %d\n",i+1);
exit(0);
};
};
printf("Can not find the letter: %s\n",s);
}
给定字母在s里
字符串在str里
位置从1起算
字符串中无给定字母,则打印Can not find the letter....
#include <stdio.h>
#include <stdlib.h>
void main ()
{
char str[] ="This a sample string.";
char s[] = "a";
int len,i;
len = strlen(str);
for (i=0;i<len;i++){
if (strncmp(&str[i],&s[0],1) == 0){
printf("location: %d\n",i+1);
exit(0);
};
};
printf("Can not find the letter: %s\n",s);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
函数名: strchr
功 能: 在一个串中查找给定字符的第一个匹配之处\
用 法: char *strchr(char *str, char c);
程序例:
#include <string.h>
#include <stdio.h>
int main(void)
{
char string[15];
char *ptr, c = 'r';
strcpy(string, "This is a string");
ptr = strchr(string, c);
if (ptr)
printf("The character %c is at position: %d\n", c, ptr-string);
else
printf("The character was not found\n");
return 0;
}
功 能: 在一个串中查找给定字符的第一个匹配之处\
用 法: char *strchr(char *str, char c);
程序例:
#include <string.h>
#include <stdio.h>
int main(void)
{
char string[15];
char *ptr, c = 'r';
strcpy(string, "This is a string");
ptr = strchr(string, c);
if (ptr)
printf("The character %c is at position: %d\n", c, ptr-string);
else
printf("The character was not found\n");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str("bcaccdec");
char ch='c';
int a=str.find(ch);
if (a==string::npos)
{
cout << "字符串中没有该字符" <<endl;
}
else
{
cout <<"该字符在字符串中首次出现在: " << a <<endl;
}
return 0;
}
#include <string>
using namespace std;
int main()
{
string str("bcaccdec");
char ch='c';
int a=str.find(ch);
if (a==string::npos)
{
cout << "字符串中没有该字符" <<endl;
}
else
{
cout <<"该字符在字符串中首次出现在: " << a <<endl;
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用容器,里面有查询某元素第一次出现的函数的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询