我是靠谱客的博主 健壮花瓣,最近开发中收集的这篇文章主要介绍编写一个函数实现在Source字符串中匹配chars字符串中的任意一个字符,函数原型 char *find_char(char const *source,char const *chars)),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
#include "stdafx.h"
#include "stdlib.h"
#include "stdio.h"
#define TRUE 1
#define FALSE 0
/*查找source字符串中匹配chars字符串中的任意一个字符*/
char *find_char(char const *source, char const *chars)//注意返回类型是否与输入类型一致
{
char *ps=(char *)source;//注意类型转化
char *pc=(char *)chars;
if(ps==NULL || pc == NULL)
return NULL;
if(*ps=='