黑马程序员技术交流社区
标题:
hasPrefix方法检测字符串前缀
[打印本页]
作者:
毛强
时间:
2015-8-24 21:53
标题:
hasPrefix方法检测字符串前缀
NSString *url = @"https://ios.itcast.cn";
//如何检测这个字符串是否是一个网址
//http:// https://
// 检测一个字符串的前缀是否以 http:// 开头 或者 https:// 开头
// [str hasPrefix:@"要检测的内容"];
if([url hasPrefix:@"http://"]||[url hasPrefix:@"https://"]){
NSLog(@"是一个网址");
}else{
NSLog(@"这不是一个网址");
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2