大馒头 发表于 2007-2-11 16:58:32

查找一个字符串中是否包含某个字符的函数?

比如说想查找在string[]中是否包含字母a,如果包含返回true,错误返回false的,有没有这个函数?

我觉得应该有吧。

jop 发表于 2007-2-11 18:43:37

回复: 查找一个字符串中是否包含某个字符的函数?


// 当不包涵指定的字串时,返回 -1,(区分大小写)
/* Checks if source contains string. On success function
* returns position in source, on failure returns -1. */
native contain(const source[],const string[]);

// 当不包涵指定的字串时,返回 -1,(不区分大小写)
/* Checks if source contains string with case ignoring. On success function
* returns position in source, on failure returns -1. */
native containi(const source[],const string[]);


查看 string.inc 说明
页: [1]
查看完整版本: 查找一个字符串中是否包含某个字符的函数?