Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の式は受け入れますdeal_status/2/
deal_status/2/
(r'^deal_status/(?P<deal_id>\d+)/$', _deal_status_view),
しかし、コンマで区切られた数字とコンマなしの1桁を受け入れるにはどうすればよいですか?
deal_status/2,3,5/ また deal_status/2/
deal_status/2,3,5/
DjangoのプロはどこでURL正規表現をテストしますか?私を助けることができるオンラインバリデーターはありますか?
どうもありがとう、
(r'^deal_status/(?P<deal_id>\d+(,\d+)*)/$', _deal_status_view),
https://regex101.com/#python