我应该怎么做? 我应该使用正则表达式吗?如果是这样,怎么办? 在下面的示例中,我想知道此字符串(tr.get_text())是否包含格式为dd.mm.yyyy的日期。其输出之一可能像这样('\ nMi \ n11.10.201708:1509:45HS H“ Ulrich Santner”(NTEG230E)Abhaltungfix')
- msbuild /p:Configuration=Release Solution.sln
答案 0 :(得分:1)
使用正则表达式。
import re
s = '\nMi\n11.10.201708:1509:45HS H "Ulrich Santner" (NTEG230E)Abhaltungfix'
m = re.search(r"(?P<date>\d{2}\.\d{2}\.\d{4})", s)
if m:
print(m.group('date'))
输出:
11.10.2017