编程语言
首页 > 编程语言> > 检查python字符串格式?

检查python字符串格式?

作者:互联网

我有一堆字符串,但我只想保留这种格式:

x / x / xxxx xx:xx

检查字符串是否符合此格式的最简单方法是什么? (假设我想查看是否有2 /’和’:’)

解决方法:

尝试定期表达:

import re
r = re.compile('.*/.*/.*:.*')
if r.match('x/x/xxxx xx:xx') is not None:
   print 'matches'

你可以调整表达式以满足你的需求

标签:data-manipulation,python,string
来源: https://codeday.me/bug/20191004/1854269.html