我有这样的正则表达式:
^page/(?P<id>\d+)-(?P<slug>[^\.]+)\.html$
和一个数组:
$args = array(
'id' => 5,
'slug' => 'my-first-article'
);
我想要功能:
my_function($regex, $args)
这将返回此结果:
page/5-my-first-article.html
如何做到这一点?
像https://docs.djangoproject.com/en/dev/ref/urlresolvers/#reverse