我正在尝试将字符串拆分为特定的关键字。我有一个关键词/字符列表。
例如:我有一个关键字列表{'1', '2', '3', '4', '5', 'let', 'while'}
我有一个字符串let2while4
我想输出一个包含{'let', '2', while', '4'}
这可能吗?我目前只使用带有 ' ' 的分隔符将其拆分
谢谢!
编辑:使用下面的 Gilch 的答案适用于下面的示例,但是当我输入完整的关键字时,我收到了这些错误:
Traceback (most recent call last):
File "parser.py", line 14, in <module>
list = re.findall(f"({'|'.join(keywords)})", input)
File "/usr/lib/python3.7/re.py", line 223, in findall
File "/usr/lib/python3.7/sre_parse.py", line 816, in _parse
p = _parse_sub(source, state, sub_verbose, nested + 1)
File "/usr/lib/python3.7/sre_parse.py", line 426, in _parse_sub
not nested and not items))
File "/usr/lib/python3.7/sre_parse.py", line 651, in _parse
source.tell() - here + len(this))
re.error: nothing to repeat at position 17
我的完整关键字包括:
关键字 = {'1','2','3','4','5','6','7','8','9','0','x','y' ,'z','+','-','*','>','(',')',';','$','let','while','else',' ='}
万千封印
相关分类