在 Python 中,序列类型包括字符串、列表、元组、集合和字典
http://c.biancheng.net/view/4312.html
Python内建的filter()函数用于过滤序列
https://www.liaoxuefeng.com/wiki/1016959663602400/1017404530360000
序列内逐个元素筛选filter 并用list保存结果
筛选的判断条件是re.match 或 search 匹配或搜索 该元素字符串是否符合正则表达式 如果不符合 输出None
list_wjlb = os.listdir(str_dizh)
str_ = "国际"
list(
# 序列内逐个元素筛选(判断, 序列)
# if 输出结果!= None is True : 筛选该元素
# else: 不筛选该元素
filter(
'''判断条件'''
lambda x :
# 该元素是否符合正则表达式(正则表达式, 元素)
# 如果符合 输出结果!= None
re.search(
str_ ,
x
) != None ,
'''序列对象'''
list_wjlb
)
) # 将筛选结果保存为列表
标签:www,Python,元素,filter,正则表达式,序列,筛选 From: https://blog.51cto.com/u_16055028/6192247https://blog.csdn.net/liaowhgg/article/details/86667938
https://blog.csdn.net/weixin_38819889/article/details/93846579
https://www.runoob.com/python/python-reg-expressions.html
https://www.cnblogs.com/linagcheng/p/15532083.html