gpt4 book ai didi

python - Python 正则表达式中的 Format()

转载 作者:太空狗 更新时间:2023-10-30 02:32:22 26 4
gpt4 key购买 nike

在下面的示例中,我希望将 {0} 和 {1} 替换为传递给 format 的参数,并且 {2} 应该具有 \w{2} 的正则表达式功能,“找到两个字母字符”。我该怎么做?

q = re.search("{0}\w{2}b{1}\w{2}quarter".format('b', 'a'), search_me).group()

最佳答案

您可以使用 {{}} 放置文字 {, }:

>>> "{0}\w{{2}}b{1}\w{{2}}quarter".format('b', 'a')
'b\\w{2}ba\\w{2}quarter'

关于python - Python 正则表达式中的 Format(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18609153/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com