是否可以执行如下操作:
re.match(r'someArbLongRegex{option1|option2}anotherArbLongRegex', line)
而不是必须这样做:
re.match(r'someArbLongRegexoption1anotherArbLongRegex|someArbLongRegexoption2anotherArbLongRegex', line)
基本上,|
我不想将其应用于整个正则表达式模式,而是希望将其应用于正则表达式模式的一小部分。
偶然的你
慕工程0101907
相关分类