Python-从任何字符串bsp中获取日期dd.mm.yyyy。(“ aa; l sd20.10.1980adgf”)

时间:2018-06-26 17:32:03

标签: python beautifulsoup tags

我应该怎么做? 我应该使用正则表达式吗?如果是这样,怎么办? 在下面的示例中,我想知道此字符串(tr.get_text())是否包含格式为dd.mm.yyyy的日期。其输出之一可能像这样('\ nMi \ n11.10.201708:1509:45HS H“ Ulrich Santner”(NTEG230E)Abhaltungfix')

  - msbuild /p:Configuration=Release Solution.sln

1 个答案:

答案 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