此问题在此处已有答案:
How to use \K for regex in python?(3个答案)
16天前关门了。
我尝试在此中将'Foo'替换为'\nFoo'(在此之前添加一个分隔线)。
123123Foo 12312FooTest
字符串
我尝试在python中使用以下表达式
[0-9]\KFoo
型
但我得到了这个错误
re.error: bad escape \K at position 7
型
此问题在此处已有答案:
How to use \K for regex in python?(3个答案)
16天前关门了。
我尝试在此中将'Foo'替换为'\nFoo'(在此之前添加一个分隔线)。
123123Foo 12312FooTest
字符串
我尝试在python中使用以下表达式
[0-9]\KFoo
型
但我得到了这个错误
re.error: bad escape \K at position 7
型
1条答案
按热度按时间mum43rcc1#
您可以将
re.sub
与look-behind(regex101)一起使用:字符串
打印:
型