如何检查一个值是否匹配一个txt文件
How to check if a value matches a txt file
我目前正在尝试解决一个解决方案,其中我有一个值和一个文本文件 (.txt),我想在其中检查代码中的值是否在文本文件中的某处。
我目前所做的是我有一个如下所示的文本文件:
999486
1117978
990583
1128062
1120618
和一个看起来像这样的代码:
def filter():
item_name = '1128062'
keyword = [line.rstrip('\n') for line in open('keywords.txt')]
has_good = False
sentences = [item_name]
def check_all(sentence, ws):
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
for sentence in sentences:
if any(check_all(sentence, word) for word in keyword):
has_good = True
break
if not has_good or keyword == "":
print("Removed the keyword - " + str(item_name))
sys.exit()
脚本的作用是:
它有一个 item_name 有一个值。
打开存储所有关键字的关键字
使用 check_all 函数和 for sentence in sentences: 我的想法是检查 txt 文件中的关键字是否匹配。如果是,那么我们就继续这个程序,如果不是,那么我们打印出 Removed the keyword and sys.exit the program.
然而,当我尝试 运行 这个程序时,我收到一条错误消息
Exception in thread Thread-2:
Traceback (most recent call last):
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\threading.py", line 916, in _bootstrap_inner
self.run()
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\threading.py", line 864, in run
self._target(*self._args, **self._kwargs)
File "C:/Users/test.py.py", line 324, in filter
if any(check_all(sentence, word) for word in keyword):
File "C:/Users/test.py.py", line 324, in <genexpr>
if any(check_all(sentence, word) for word in keyword):
File "C:/Users/test.py.py", line 321, in check_all
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
File "C:/Users/test.py.py", line 321, in <genexpr>
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\re.py", line 182, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object
我意识到这一定是关于
的问题
def check_all(sentence, ws):
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
这就是我遇到的问题,请问大家我如何才能检查 .txt 文件中的关键字是否匹配,如果不匹配,则打印出来 删除了keyword 和 sys.exit 程序,如果匹配则我们什么都不做。
假设您只想打印 true
如果 keyword
在文件中,如果 keyword
不在文件中则打印 False
.. 尝试执行下面的代码...
文本文件::
999486
1117978
990583
1128062
1120618
程序::
def match_string(text):
result = False
keyword = [line.rstrip('\n') for line in open('keyword.txt')]
if text in keyword:
result = True
return result
match_string('999487')
returns True
注意:我仍然无法理解您是需要匹配整个字符串还是匹配字符串的每个字符...
这里不需要 re 模块,因为看起来我们只是在搜索字符串匹配。
import sys
KEYWORDS_PATH = 'keyword.txt'
KEYWORDS = open(KEYWORDS_PATH).read().splitlines()
sentences = ['999487']
for sentence in sentences:
if sentence in KEYWORDS:
print('Removed the keyword - %s' % sentence)
sys.exit()
你可以试试这个:
text = "Some dummy text with numbers 123"
tokens = text.split(" ")
num = "123" # Number as string
if num in token:
print("True")
else :
print("False")
我目前正在尝试解决一个解决方案,其中我有一个值和一个文本文件 (.txt),我想在其中检查代码中的值是否在文本文件中的某处。
我目前所做的是我有一个如下所示的文本文件:
999486
1117978
990583
1128062
1120618
和一个看起来像这样的代码:
def filter():
item_name = '1128062'
keyword = [line.rstrip('\n') for line in open('keywords.txt')]
has_good = False
sentences = [item_name]
def check_all(sentence, ws):
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
for sentence in sentences:
if any(check_all(sentence, word) for word in keyword):
has_good = True
break
if not has_good or keyword == "":
print("Removed the keyword - " + str(item_name))
sys.exit()
脚本的作用是:
它有一个 item_name 有一个值。 打开存储所有关键字的关键字
使用 check_all 函数和 for sentence in sentences: 我的想法是检查 txt 文件中的关键字是否匹配。如果是,那么我们就继续这个程序,如果不是,那么我们打印出 Removed the keyword and sys.exit the program.
然而,当我尝试 运行 这个程序时,我收到一条错误消息
Exception in thread Thread-2:
Traceback (most recent call last):
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\threading.py", line 916, in _bootstrap_inner
self.run()
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\threading.py", line 864, in run
self._target(*self._args, **self._kwargs)
File "C:/Users/test.py.py", line 324, in filter
if any(check_all(sentence, word) for word in keyword):
File "C:/Users/test.py.py", line 324, in <genexpr>
if any(check_all(sentence, word) for word in keyword):
File "C:/Users/test.py.py", line 321, in check_all
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
File "C:/Users/test.py.py", line 321, in <genexpr>
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36\lib\re.py", line 182, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object
我意识到这一定是关于
的问题def check_all(sentence, ws):
return all(re.search(r'\b{}\b'.format(w), sentence) for w in ws)
这就是我遇到的问题,请问大家我如何才能检查 .txt 文件中的关键字是否匹配,如果不匹配,则打印出来 删除了keyword 和 sys.exit 程序,如果匹配则我们什么都不做。
假设您只想打印 true
如果 keyword
在文件中,如果 keyword
不在文件中则打印 False
.. 尝试执行下面的代码...
文本文件::
999486
1117978
990583
1128062
1120618
程序::
def match_string(text):
result = False
keyword = [line.rstrip('\n') for line in open('keyword.txt')]
if text in keyword:
result = True
return result
match_string('999487')
returns True
注意:我仍然无法理解您是需要匹配整个字符串还是匹配字符串的每个字符...
这里不需要 re 模块,因为看起来我们只是在搜索字符串匹配。
import sys
KEYWORDS_PATH = 'keyword.txt'
KEYWORDS = open(KEYWORDS_PATH).read().splitlines()
sentences = ['999487']
for sentence in sentences:
if sentence in KEYWORDS:
print('Removed the keyword - %s' % sentence)
sys.exit()
你可以试试这个:
text = "Some dummy text with numbers 123"
tokens = text.split(" ")
num = "123" # Number as string
if num in token:
print("True")
else :
print("False")