匹配替代 url - 正则表达式 django url

发布于 2024-08-06 14:33:45 字数 324 浏览 3 评论 0原文

我想要一个 Django URL,只有 2 个替代方案 /module/in//module/out/

我正在使用

url(r'^(?P<status>\w+[in|out])/$', 
'by_status', 
name='module_by-status'),

但它匹配其他模式,如 /module/ i//module/n//module/ou/

任何提示表示赞赏:)

I want a Django URL with just 2 alternatives /module/in/ or /module/out/

I'm using

url(r'^(?P<status>\w+[in|out])/

But it matches other patterns like /module/i/, /module/n/ and /module/ou/.

Any hint is appreciated :)

, 'by_status', name='module_by-status'),

But it matches other patterns like /module/i/, /module/n/ and /module/ou/.

Any hint is appreciated :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单挑你×的.吻 2024-08-13 14:33:45

尝试 r'^(?Pin|out)/$'

您需要删除 \w+,它匹配一个或多个字母数字字符或下划线。 bstpierre 的答案中建议的正则表达式 '^(?P\w+(in|out))/$' 将匹配 helloin, good_byeout< /代码>等等。

请注意,如果您在 url 模式中使用竖线(管道)字符 |,Django 无法反转正则表达式。如果您需要在模板中使用 url 标签,则需要编写两种 url 模式,一种用于 in,一种用于 out

Try r'^(?P<status>in|out)/$'

You need to remove \w+, which matches one or more alphanumeric characters or underscores. The regular expression suggested in bstpierre's answer, '^(?P<status>\w+(in|out))/$' will match helloin, good_byeout and so on.

Note that if you use the vertical bar (pipe) character | in your url patterns, Django cannot reverse the regular expression. If you need to use the url tag in your templates, you would need to write two url patterns, one for in and one for out.

绾颜 2024-08-13 14:33:45

你想要(in|out),你使用的[]表示包含字符'i','n','|','o','u','t'的字符类。

You want (in|out), the [] you are using indicate a character class containing the characters 'i', 'n', '|', 'o', 'u', 't'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文