NSString中,某字符串首次出现的检索
1 rangeOfString 2//在1中查找首次出现的2
NSString *str1=@“”;
NSString *str2=@“”;
//NSRange是自定义的结构体,有两个成员location,length,
1.如果查找到了,返回查找字符串在原字符串的位置和长度,
2.如果没找到,返回特别大的一个数,最大的long型的数(location),和0(length)
NSRange range=[str1 rangeOfString str2];
if(range.location!=NSNotFound){
NSLog(@“%lu,%lu”,range.location,range.length);
}else{
NSLog(@“没有检测到%lu”,str2);
}
url hasPrefix:@“http://”
imgName hasSuffix:@“.jpg”
返回值是BOOL类型的,用作在if语句中判断YES或者NO
NSNotFound 是否找到 |