给定一个车牌字符串,输出车牌中最后一位数字字符
时间: 2024-05-24 13:13:40 浏览: 153
车牌字符
4星 · 用户满意度95%
答案:可以使用正则表达式匹配最后一位数字字符,如下所示:
import re
plate = "粤B12345"
match = re.search(r'\d$', plate)
if match:
last_digit = match.group()
print(last_digit)
else:
print("车牌中没有数字字符")
阅读全文