|
发表于 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 说明 |
|