验证身份证号、手机号、做记号格式是否正确代码
时间: 2024-10-09 14:02:46 浏览: 19
验证身份证号、手机号码以及特定格式的数据通常需要使用正则表达式来进行。这里提供一些基本的Python代码示例:
1. **身份证号码验证** (中国大陆18位数字,加最后一位校验码):
```python
import re
def check_id(id_num):
id_pattern = r'^\d{15}(?:\d|X|x)$'
if not re.match(id_pattern, id_num):
return False
# 校验码计算部分省略,实际应用中可以参考国家标准GB17896
# 例如 Luhn算法
return True
# 使用示例
id_to_check = "123456789012345678"
if check_id(id_to_check):
print("身份证号码格式正确")
else:
print("身份证号码格式错误")
```
2. **手机号码验证** (中国大陆11位号码,格式如13812345678):
```python
def check_phone(phone):
phone_pattern = r'^1[3-9]\d{9}$'
if not re.match(phone_pattern, phone):
return False
return True
phone_to_check = "13812345678"
if check_phone(phone_to_check):
print("手机号码格式正确")
else:
print("手机号码格式错误")
```
对于“做记号”这个不太明确的概念,如果是指文本中特定字符或模式的查找,可以类似处理。如果想确认某个字符串是否包含特定格式的标记(如HTML标签),也可以编写相应的正则表达式。
阅读全文