标签: python regex
Number_Plate = input ("Number Plate of car :") Validation = re.match("([a-zA-Z]{2}[0-9][Whitespace][A-Za-z]{3})",Number_Plate)
我的问题是如何为re.match添加空格来检查?
re.match
答案 0 :(得分:2)
对空格\s使用正则表达式语法。 空格是“”或“\t”(标签),您还可以使用其他形式的空白:
\s
\t
'\r'=回车
\r
'\n'=换行
\n
''=空间
'\t'=标签
有关RegEx Here的更多信息