search

Home  >  Q&A  >  body text

python - 如何在正则字符串中使用format()

PHP中文网PHP中文网2829 days ago418

reply all(2)I'll reply

  • 天蓬老师

    天蓬老师2017-04-18 10:00:49

    In the format string, use '{{' to change to { , '}}' to change to }

    Your example can be written like this:

    "\d{{5}}_{name}_aaa".format(name=name)

    reply
    0
  • ringa_lee

    ringa_lee2017-04-18 10:00:49

    Is this necessary?

    Regular expressions are much more expressive than format, so there is no need to add superfluous information~

    reply
    0
  • Cancelreply