过滤匹配模式的字符串列表的正则表达式
问题描述
我使用R的次数要多得多,用R:
做起来更容易> test <- c('bbb', 'ccc', 'axx', 'xzz', 'xaa')
> test[grepl("^x",test)]
[1] "xzz" "xaa"
但是如果test
是一个列表,那么在python中该怎么做呢?
附注:我正在使用Google的python练习学习python,我更喜欢使用正则表达式。
解决方案
您可以使用以下内容查找列表中是否有任何字符串以'x'
>>> [e for e in test if e.startswith('x')]
['xzz', 'xaa']
>>> any(e.startswith('x') for e in test)
True
相关文章