让我们说我有一个清单
list = ['this','is','just','a','test']
如何让用户进行通配符搜索?
搜索词:'th_s'
会返回'this'
答案 0 :(得分:125)
使用fnmatch
:
import fnmatch
lst = ['this','is','just','a','test']
filtered = fnmatch.filter(lst, 'th?s')
如果您想允许_
作为通配符,只需replace所有下划线'?'
(一个字符)或*
(多个字符)。
如果您希望用户使用更强大的过滤选项,请考虑允许他们使用regular expressions。
答案 1 :(得分:46)
正则表达式可能是解决此问题的最简单方法:
import re
regex = re.compile('th.s')
l = ['this', 'is', 'just', 'a', 'test']
matches = [string for string in l if re.match(regex, string)]
答案 2 :(得分:4)
答案 3 :(得分:2)
你的意思是通配符的任何特定语法?通常*
代表“一个或多个”字符,而?
代表一个字符。
最简单的方法可能是将通配符表达式转换为正则表达式,然后使用它来过滤结果。
答案 4 :(得分:0)
与Yuushi在使用正则表达式时的想法相同,但是它使用re库中的findall方法而不是列表解析:
:~$ dpkg -L g++-7
/.
/usr
/usr/lib
/usr/lib/gcc
/usr/lib/gcc/x86_64-linux-gnu
/usr/lib/gcc/x86_64-linux-gnu/7
/usr/lib/gcc/x86_64-linux-gnu/7/cc1plus
/usr/share
/usr/share/doc
/usr/share/doc/gcc-7-base
/usr/share/doc/gcc-7-base/C++
/usr/share/doc/gcc-7-base/C++/README.C++
/usr/share/doc/gcc-7-base/C++/changelog.gz
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/x86_64-linux-gnu-g++-7.1.gz
/usr/bin
/usr/bin/x86_64-linux-gnu-g++-7
/usr/share/doc/g++-7
/usr/share/man/man1/g++-7.1.gz
/usr/bin/g++-7
:~$ which g++
/usr/bin/g++
答案 5 :(得分:0)
为什么不只使用join功能?在正则表达式findall()或group()中,您将需要一个字符串,以便:
import re
regex = re.compile('th.s')
l = ['this', 'is', 'just', 'a', 'test']
matches = re.findall(regex, ' '.join(l)) #Syntax option 1
matches = regex.findall(' '.join(l)) #Syntax option 2
join()函数允许您转换字符串列表。加入之前的单引号是您将放在列表中每个字符串中间的内容。当您执行此代码部分(''.join(l))时,您将收到以下信息:
“这只是测试”
因此您可以使用findal()函数。
我知道我迟到了7年,但我最近创建了一个帐户,因为我正在学习,而其他人可能会遇到同样的问题。希望对您和其他人有帮助。
在@FélixBrunet评论后更新:
import re
regex = re.compile(r'th.s')
l = ['this', 'is', 'just', 'a', 'test','th','s', 'this is']
matches2=[] #declare a list
for i in range(len(l)): #loop with the iterations = list l lenght. This avoid the first item commented by @Felix
if regex.findall(l[i]) != []: #if the position i is not an empty list do the next line. PS: remember regex.findall() command return a list.
if l[i]== ''.join(regex.findall(l[i])): # If the string of i position of l list = command findall() i position so it'll allow the program do the next line - this avoid the second item commented by @Félix
matches2.append(''.join(regex.findall(l[i]))) #adds in the list just the string in the matches2 list
print(matches2)
答案 6 :(得分:-3)
简单的方法是尝试os.system
:
import os
text = 'this is text'
os.system("echo %s | grep 't*'" % text)