fork(1) download
  1. import re
  2. mylist = ["dog", "cat named bob", "wildcat", "thundercat", "cow also named bob", "hooo"]
  3. r = re.compile('named')
  4. # You might gfo through the list, check if there is match
  5. # by running a re.search, and there is, extract it
  6. newlist = [r.search(x).group() for x in mylist if r.search(x)]
  7. print(newlist)
  8. # Or, use map to get the matches first, and then
  9. # check if the object is not None and then retrieve the value
  10. newlist = [x.group() for x in map(r.search, mylist) if x]
  11. print(newlist)
Success #stdin #stdout 0.04s 9552KB
stdin
Standard input is empty
stdout
['named', 'named']
['named', 'named']