- //1.判断字符串前缀
- // [str hasPrefix:@"要检测内容"]返回值是bool类型
- // 网址前缀http:// https:// file:// ftp://
- NSString *str = @"http://ios,itcast.cn";
- if ([str hasPrefix:@"http://"]||[str hasPrefix:@"https://"]||[str hasPrefix:@"file://"]||[str hasPrefix:@"ftp://"]) {
- NSLog(@"是一个网址");
- }else{
- NSLog(@"不是一个网址");
- }
- //2.判断字符串后缀
- // 格式: [str hasSuffix:@"要检测的内容"]; 返回值是bool类型
- NSString *str2 = @"xxxx.ipg";
- if ([str hasSuffix:@.jpg]) {
- NSLog(@"是一张图片");
- }else{
- NSLog(@"不是一张图片");
- }
复制代码 |
|