我想用字符串填充正则表达式变量。
import re
hReg = re.compile("/robert/(?P<action>([a-zA-Z0-9]*))/$")
hMatch = hReg.match("/robert/delete/")
args = hMatch.groupdict()
args 变量现在是一个带有 {"action":"delete"} 的字典。
我怎样才能扭转这个过程?使用 args dict 和 regex 模式,我如何获得字符串 "/robert/delete/" ?
有可能有这样的功能吗?
def reverse(pattern, dictArgs):
谢谢