up vote 2 down vote favorite
1
share [g+] share [fb]

I want to filter strings in a list based on a regular expression.

Is there something better than [x for x in list if r.match(x)] ?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted
filter(r.match, list)
link|improve this answer
Actually, list comprehensions are usually prefered over functional constructs such as filter, reduce, lambda, etc. – Ivo van der Wijk Sep 4 '10 at 0:41
1  
@Ivo: They are usually preferred because they're usually clearer and often more succinct. However in this case, the filter version is perfectly clear and has much less noise. – sepp2k Sep 4 '10 at 0:47
well, my question was if there's something like random.choice, but for regexps, but the answer seems no :-) – leoluk Sep 4 '10 at 1:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.