我有一个像这样的字符串,前面附加了一些奇怪的字符(整个字符串):
# Edited to make more clear. It is essentially this:
x = """
INFO 2022-12-27 16:56:25.843 request id: app - xxxxxx
', "INFO 2022-12-27 16:56:26.407 request id: app - xxxxxxx
", 'INFO 2022-12-27 16:56:26.407 request id: app - xxxxxx
INFO 2022-12-27 16:56:26.497 request id: app - xxxxxxxx
"""
# So need to remove the comma and apostrophes in the 2nd and 3rd line of string object x
我想删除第2行和第3行中的', "
和', "
,但由于撇号组合导致string literal is unterminated
错误,因此很难替换或正则化它。
3条答案
按热度按时间sdnqo3pr1#
假设每一行日志总是以
INFO
或DEBUG
这样的关键字开头,我们可以在多行模式下对文本进行正则表达式替换:这将打印:
j2datikz2#
工作原理:将every '替换为nothing,将其删除。
希望这能帮上忙。
pu3pd22g3#
假设您真正想要做的是删除任何行中"INFO"之前的任何内容,则: