Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
748 views
in Technique[技术] by (71.8m points)

regex multiple string match in a python list

I have a list of strings like this:

["ra", "dec", "ra-error", "dec-error", "glat", "glon", "flux", "l", "b"]

I need to find all the strings in this list that contain "ra" or "dec" or "lat"

I checked many other threads as well as the regex manual. It turned out to be too confusing for me. Pleas help. :(

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You don't need regex for this at all. A list comprehension with any will suffice

>>> subs = ['ra', 'dec', 'lat']
>>> strings = ["ra", "dec", "ra-error", "dec-error", "glat", "glon", "flux", "l", "b"]
>>> [s for s in strings if any(i in s for i in subs)]
['ra', 'dec', 'ra-error', 'dec-error', 'glat']

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...