I have a list of string values that contain date values that I’d like to extract in Python. There isn’t consistency in how the string looks, for instance below are two valid strings:
(CSCO)
[ST] S (partial) 08/27/2020 09/08/2020 $1,001 - $15,000
(CMS)
[ST]
S (partial)08/27/2020 09/08/2020 $1,001 - $15,000
How do I parse out the two dates, perhaps using regex or other matching methods?