我有一个似乎无法在Python中解决的问题。我有一个需要与字符数组中的任何字符匹配的模式。如果不是,则有问题。所以这是我的例子:
模式=“ 0000 006e 0022 0002 0156 00ac 0016 0016 0016 0041 0016 0041 0016 0041 0016 0016 0016 0016 0016 0041 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0041 0016 0041 0016 0041 0016 0016 0016 0016 0016 0016 0016 0041 0016 05e0 0156 0055 0016 0e41“
allowedCharacters =“ 123456789abcdef”
因此,我的目标是查看模式是否符合允许的字符。在C#中,我执行了以下操作,但是我不知道如何在Python中完成此操作。
这是我当前的代码。
# Test that there are only valid characters in the pattern.
charPattern = list(pattern)
expression = list("01234567890abcdef")
for currentChar in pattern:
if len(charPattern) - pattern[-1::-1].index("0123456789abcdef") - 1:
self.assertTrue(False, logger.failed("The invalid character: " + currentChar + " was found in the IRCode pattern for: " + ircode))`enter code here`
欢迎任何想法/建议/代码示例。
谢谢。
最佳答案
试试这个代码:
import re
p = re.compile(r'^[0123456789abcdef\s]+$')
str = "0000 006e 0022 0002 0156 00ac 0016 0016 0016 0041 0016 0041 0016 0041 0016 0016 0016 0041 0016 0041 0016 0041 0016 0041 0016 0041 0016 0041 0016 0016 0016 0016 0016 0016 0016 0016 0016 0041 0016 0016 0016 0016 0016 0041 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0016 0041 0016 0041 0016 0041 0016 0016 0016 0016 0016 0016 0016 0041 0016 05e0 0156 0055 0016 0e41"
if(p.match(str)):
print("passed")
else:
list = re.findall('([^0123456789abcdef\s])+', str)
print(list)
它将在字符串中搜索出现的
0123456789abcdef\s
。如果某些字符不在此模式中,则不会通过编辑:
增加了代码以防不通过,将打印所有无效的事件