Я ищу совпадение со строкой даты, как показано ниже
string1 = '11/13/2019 - 11/13/2019'
string2 = '11/14/2019 11/14/2019'
string3 = '01/21/2019. . 11/20/2019'
Использую приведенный ниже код для извлечения всех из них.
match : r"(\d+[/1]\d+[/1]\d+[ - ]\d+[/1]\d+[/1]\d+)"
Но приведенное выше дает мне только строку 1 .
Edit:
all string have two dates in common, I wanted to match it with both the date formats, ignoring the characters in between them. Is there a way to do this ?
ignore '-',' ', '. .'
любая помощь по этому вопросу.