标签:正则 idt table 表达 身份证 正则表达式 tab height width
正则 | 解释 |
---|---|
[1-9]\d{5} | 6位地区编码 |
[1-9]\d{3} | 4位年份 |
((0\d)|(1[0-2])) | 2位月份 |
(([0|1|2]\d)|3[0-1]) | 2位日数 |
\d{3}[0-9Xx] | 4位校检码 |
18位身份证的正则表达式为:
/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}[0-9Xx]$/
标签:正则 idt table 表达 身份证 正则表达式 tab height width
原文地址:https://www.cnblogs.com/keyng/p/13098871.html