- Before iOS 8
NSString *str = @"Hello World";
if([str rangeOfString:@"Hello"].location == NSNotFound)
{
// 不包含
}
else
{
// 包含
}
- After
NSString *str = @"Hello World";
if([str containsString:@"Hello"])
{
// 包含
}
else
{
// 不包含
}
NSString *str = @"Hello World";
if([str rangeOfString:@"Hello"].location == NSNotFound)
{
// 不包含
}
else
{
// 包含
}
NSString *str = @"Hello World";
if([str containsString:@"Hello"])
{
// 包含
}
else
{
// 不包含
}
本文标题:NSString 是否包含某字串
本文链接:https://www.haomeiwen.com/subject/ezrjhttx.html
网友评论