Considering a list of tickers as the following below:
tickers = ['EWZ US 05/29/20 C31','HSI US 12/30/20 C24900', 'SKG1C 24', 'S H1P 49']
How I can apply a filter to select only tickers that have a date? I'm try the following:
import re
tickers_off = [re.search(r'(\d+/\d+/\d+)', x) for x in tickers]
output expected:
['EWZ US 05/29/20 C31','HSI US 12/30/20 C24900']