NSRange可以确定更大的字符串中是否存在一段文本?

时间:2011-01-17 17:10:06

标签: objective-c nsrange

我有一个从http GET回来的大字符串,我正在尝试确定它是否有特定的文本片段(请在这里原谅我的罪过)

我的问题是:可以/我应该使用NSRange来确定这段文本是否确实存在?

  NSRange textRange;
  textRange =[[responseString lowercaseString] rangeOfString:[@"hat" lowercaseString]];

  if(textRange.location != NSNotFound)
  {
    //do something magical with this hat
  }

提前谢谢!

2 个答案:

答案 0 :(得分:11)

您可以查看该地点是否为NSNotFound

NSRange textRange = [[responseString lowercaseString] rangeOfString:@"hat"];
if (textRange.location == NSNotFound) {
    // "hat" is not in the string
}

如果找不到字符串,rangeOfString:会返回{NSNotFound, 0}

如果您经常使用它,可以将其捆绑到NSString上的类别中:

@interface NSString (Helper)
- (BOOL)containsString:(NSString *)s;
@end

@implementation NSString (Helper)

- (BOOL)containsString:(NSString *)s
{
    return [self rangeOfString:s].location != NSNotFound;
}

@end

答案 1 :(得分:1)

iOS 9.2,Xcode 7.2,启用了ARC

谢谢" mipadi"为原来的贡献。我想详细说明并更新答案。

为什么你还会使用这种技术?好吧,- (BOOL)containsString:(NSString *)str仅支持iOS 8.0及更高版本。

我最喜欢使用这个:

if (yourString)
{
    //Check to make yourString is not nil, otherwise NSInvalidArgumentException is raised.

    if (!([yourString rangeOfString:@"stringToSearchFor"].location == NSNotFound))
    {
        //The string "stringToSearchFor" was found in yourString, i.e. the result is NOT NSNotFound.
    }
    else
    {
        //The string "stringToSearchFor" was not found in yourString.
    }
}
else
{
    nil;
}

希望这有助于某人!欢呼声。