Python reqular表达式用查询结果替换匹配的字符串

时间:2018-10-25 09:53:07

标签: python regex

我有这样的文字

event_message = "You are in position {position}  of the board today"
re.sub(r"(\{.*?\})", 'query result', event_message)

对于所有匹配的字符串,我要执行查询并将匹配的字符串替换为查询结果。像这样

query = "select value from text_reference where variable = 'positon'"

这里positon是匹配的字符串,我想用上述查询的结果替换此字符串。请帮助TIA

0 个答案:

没有答案