大馒头 发表于 2006-8-29 18:21:24

如何检查一个字符串是否包含另一个字符串?

如何检查一个字符串是否包含另一个字符串?

有没有这样的函数?

例如:字符串str1是“english”,字符串str2是“en”。检查str1是否包含str2,包含返回true,不包换返回false。

kinsprite 发表于 2006-8-30 08:59:23

回复: 如何检查一个字符串是否包含另一个字符串?

contain ( const source[], const string[] )
contain - Returns position of string found inside of source, or -1 on failure.

containi ( const source[], const string[] )
containi - Returns position of string found inside of source, or -1 on failure. Case insensitive.

hqzycs 发表于 2006-8-30 12:33:51

回复: 如何检查一个字符串是否包含另一个字符串?

kinsprite强人啊................不过DT汉化组的人就是太强...
页: [1]
查看完整版本: 如何检查一个字符串是否包含另一个字符串?