美文网首页
iOS 如何判断字符串中含有某个字符

iOS 如何判断字符串中含有某个字符

作者: FZ_loveCarrot | 来源:发表于2016-12-13 14:13 被阅读7次

    判断字符串中是否含有“xx”字符:

    if([roadTitleLab.text rangeOfString:@"xx"].location !=NSNotFound)//_roaldSearchText{

    NSLog(@"yes");

    }else{

    NSLog(@"no");

    }

    相关文章

      网友评论

          本文标题:iOS 如何判断字符串中含有某个字符

          本文链接:https://www.haomeiwen.com/subject/znxbmttx.html