用指針的方式實現,重寫strrchr函數的功能
阿新 • • 發佈:2018-06-17
轉化 查找 mes 逆向 字母 () urn 移動 turn
char *strchrTest(char * ptr,char c);
Action()
{
char str[]={"thisisadog"};
char c=‘s‘;
lr_output_message("%s",strchrTest(str,c));
return 0;
}
char *strchrTest(char *ptr,char c)
{
char *p=ptr;
char *p1=ptr;
if(ptr!=NULL)
{
//移動指針到字符串尾
while(*ptr!=‘\0‘)
{
ptr++;
}
//逆向查找指定字符
while(ptr!=p1)
{
if(*ptr==c)
{
p=ptr;
break;
}
ptr--;
}
}
//實現大寫到小寫的轉化;
if((*p>=‘A‘)&&(*p<=‘Z‘))
{
}
else if ((*p>=‘a‘)&&(*p<=‘z‘))
{
*p=*p-32;
}else
{
lr_output_message("%c不是字母",c);
}
//lr_output_message("%s",ptr);
return p;
}
用指針的方式實現,重寫strrchr函數的功能