历史版本
版本号 | 时间 |
---|---|
V1.0 | 2017.07.08 |
前言
在ios中很多情况下都需要进行专门的判断,比如判断输入的手机号是否正确,判断输入的邮箱格式是否正确,判断输入的字符串是否全是大写字母,判断输入的是否全部都是数字,等等。我们要让机器能够进行“自主”识别,就需要正则表达式的帮助,这里我们就说一下正则表达式的作用。感兴趣的可以看这几篇。
1. ios正则表达式细说(一)
这一篇说一下几种常用的正则匹配情况。
几种常用的正则匹配
一、检测密码强度
密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10之间。
下面看程序
- (void)matchPassword
{
NSString *zzStr = @"^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isPassword = [pred evaluateWithObject:@"asD123321"];
NSLog(@"isPassword = %d",isPassword);
BOOL isPassword1 = [pred evaluateWithObject:@"asd*****1"];
NSLog(@"isPassword1 = %d",isPassword1);
}
下面看输出结果
2017-07-08 23:41:10.540 JJZhengZe[1472:31138] isPassword = 1
2017-07-08 23:41:10.541 JJZhengZe[1472:31138] isPassword1 = 0
二、匹配汉字
下面这个就是汉字的检测和匹配。
- (void)Hanzi
{
NSString *zzStr = @"^[\\u4e00-\\u9fa5]{0,}$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"我是一个码农"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd*****1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-08 23:45:57.134 JJZhengZe[1537:35353] isMatch = 1
2017-07-08 23:45:57.134 JJZhengZe[1537:35353] isMatch1 = 0
三、由数字、26个英文字母或下划线组成的字符串
下面就以代码为例教研这种状态。
- (void)customStr
{
NSString *zzStr = @"^\\w+$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"aA12__"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-08 23:57:51.341 JJZhengZe[1794:44212] isMatch = 1
2017-07-08 23:57:51.341 JJZhengZe[1794:44212] isMatch1 = 0
四、E-mail地址的校验
下面我们就开始校验E-Mail地址。
- (void)EmailAddress
{
NSString *zzStr = @"[\\w!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\\w](?:[\\w-]*[\\w])?\\.)+[\\w](?:[\\w-]*[\\w])?";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"lijunyu8808@163.com"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-09 00:00:59.975 JJZhengZe[1859:48098] isMatch = 1
2017-07-09 00:00:59.975 JJZhengZe[1859:48098] isMatch1 = 0
五、校验身份证号
下面的是15位身份证号
^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$
接着,下面的就是18位身份证号
^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([0-9]|X)$
下面看代码
- (void)personIdentify
{
NSString *zzStr = @"^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([0-9]|X)$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"230606198808143611"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-09 00:09:16.131 JJZhengZe[1994:55098] isMatch = 1
2017-07-09 00:09:16.131 JJZhengZe[1994:55098] isMatch1 = 0
六、日期的校验
“yyyy-mm-dd“ 格式的日期校验,已考虑平闰年。
下面看代码
- (void)matchDate
{
NSString *zzStr = @"^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"1988-08-18"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-09 00:14:35.715 JJZhengZe[2083:59452] isMatch = 1
2017-07-09 00:14:35.715 JJZhengZe[2083:59452] isMatch1 = 0
七、金额校验
金额校验,精确到2位小数。
下面看代码
- (void)matchMoney
{
NSString *zzStr = @"^[0-9]+(.[0-9]{2})?$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"88.88"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看结果
2017-07-09 00:18:49.944 JJZhengZe[2153:64093] isMatch = 1
2017-07-09 00:18:49.945 JJZhengZe[2153:64093] isMatch1 = 0
八、校验手机号
下面是国内 13、15、18开头的手机号正则表达式。
下面看代码
- (void)matchPhone
{
NSString *zzStr = @"^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\\d{8}$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"15353535353"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-09 00:23:33.012 JJZhengZe[2224:68877] isMatch = 1
2017-07-09 00:23:33.012 JJZhengZe[2224:68877] isMatch1 = 0
九、判断IE的版本
IE目前还没被完全取代,很多页面还是需要做版本兼容,下面是IE版本检查的表达式。
下面看代码
- (void)matchIE
{
NSString *zzStr = @"^.*MSIE [5-8](?:\\.[0-9]+)?(?!.*Trident\\/[5-9]\\.0).*$";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"IE12"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看输出结果
2017-07-09 00:28:55.920 JJZhengZe[2344:74262] isMatch = 0
2017-07-09 00:28:55.920 JJZhengZe[2344:74262] isMatch1 = 0
十、校验IP4地址
这里校验IP4,下面我们看代码。
- (void)matchIP4
{
NSString *zzStr = @"\\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\b";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"192.168.5.5"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面我们看结果
2017-07-09 00:32:33.656 JJZhengZe[2416:78224] isMatch = 1
2017-07-09 00:32:33.656 JJZhengZe[2416:78224] isMatch1 = 0
十一、校验IP6地址
下面我们看代码
- (void)matchIp6
{
NSString *zzStr = @"\\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\b";
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zzStr];
BOOL isMatch = [pred evaluateWithObject:@"CDCD:910A:2222:5498:8475:1111:3900:2020"];
NSLog(@"isMatch = %d",isMatch);
BOOL isMatch1 = [pred evaluateWithObject:@"asd**1"];
NSLog(@"isMatch1 = %d",isMatch1);
}
下面看结果
2017-07-09 00:38:05.975 JJZhengZe[2552:82735] isMatch = 0
2017-07-09 00:38:05.977 JJZhengZe[2552:82735] isMatch1 = 0
十二、检查URL前缀
应用开发中很多时候需要区分请求是HTTPS还是HTTP,通过下面的表达式可以取出一个url的前缀然后再逻辑判断。
if (!s.match(/^[a-zA-Z]+:\\/\\//))
{
s = 'http://' + s;
}
十三、提取URL链接
下面的这个表达式可以筛选出一段文本中的URL。
^(f|ht){1}(tp|tps):\\/\\/([\\w-]+\\.)+[\\w-]+(\\/[\\w- ./?%&=]*)?
十四、文件路径及扩展名校验
验证文件路径和扩展名。
^([a-zA-Z]\\:|\\\\)\\\\([^\\\\]+\\\\)*[^\\/:*?"<>|]+\\.txt(l)?$
十五、提取Color Hex Codes
有时需要抽取网页中的颜色代码,可以使用下面的表达式。
\\#([a-fA-F]|[0-9]){3,6}
十六、提取网页图片
假若你想提取网页中所有图片信息,可以利用下面的表达式。
\\< *[img][^\\>]*[src] *= *[\\"\\']{0,1}([^\\"\\'\\ >]*)
十七、提取页面超链接
提取html中的超链接。
(<;a\\s*(?!.*\\brel=)[^>;]*)(href="https?://)((?!(?:(?:www\\.)?'.implode('|(?:www\\.)?', $follow_list).'))[^"]+)"((?!.*\\brel=)[^>;]*)(?:[^>;]*)>
十八、精炼CSS
通过下面的表达式,可以搜索相同属性值的CSS,从而达到精炼代码的目的。
^\\s*[a-zA-Z\\-]+\\s*[:]{1}\\s[a-zA-Z0-9\\s.#]+[;]{1}
十九、抽取注释
如果你需要移除HMTL中的注释,可以使用如下的表达式。
<!--(.*?)-->
二十、 匹配HTML标签
通过下面的表达式可以匹配出HTML中的标签。
</?\\w+((\\s+\\w+(\\s*=\\s*(?:".*?"|'.*?'|[\\^'">\\s]+))?)+\\s*|\\s*)/?>
后记
未完,待续~~~