gpt4 book ai didi

python - 正则表达式 Python Django url

转载 作者:行者123 更新时间:2023-12-01 03:58:43 24 4
gpt4 key购买 nike

当我尝试 runserver 时,此正则表达式出现错误:

url(r'^articles/get/(?<article_id>)\d+/$', views.article)

你能解释一下 - 我错在哪里吗?

最佳答案

您一定在寻找

^articles/get/(?P<article_id>\d+)/$
^ ^^^^

请参阅regex demo

第一个问题是您未能正确使用命名捕获组,第二个问题是您没有通过设置结束)来捕获任何内容。就在组名称之后,而您想使用 \d+ 捕获 1+ 位数字进入article_id组。

此外,可以找到有关命名组的一些引用 here :

(?P<name>...)
Similar to regular parentheses, but the substring matched by the group is accessible via the symbolic group name name.

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

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