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.
URLパラメータで任意の文字を受け入れるにはどうすればよいですか?
(?P<slug>[-\w]+)
上記は、ダッシュと英数字のみを受け入れています。
ドットは任意の文字に一致します:
(?P<slug>.+)