只打印字符串中的日期



这是我的字符串

word = " Saturday Fortune 08-09-2022 (4872) Draw Numbers "

但我只想像这个一样在字符串中打印日期

'08-09-2022'

那么我该如何做到这一点呢?

应该使用正则表达式在字符串中查找该部分。类似于:

import re
match = re.search(r'd{2}-d{2}-d{4}', word)

这似乎已经作为这个线程中的一个子问题得到了回答。

相关内容

  • 没有找到相关文章

最新更新