首页 > 代码库 > ios 字符串

ios 字符串

1、判断字符串是否包含某个字符

        if( [str rangeOfString:@"hello"].location != NSNotFound) {

            

            NSLog(@"yes");

            

        } else {

            

            NSLog(@"no");

        }