fork download
  1. import re
  2. tickers = ['EWZ US 05/29/20 C31','HSI US 12/30/20 C24900', 'SKG1C 24', 'S H1P 49']
  3. rx = re.compile(r'\d+/\d+/\d+')
  4. print( list(filter(rx.search, tickers)) )
  5.  
Success #stdin #stdout 0.03s 9500KB
stdin
Standard input is empty
stdout
['EWZ US 05/29/20 C31', 'HSI US 12/30/20 C24900']