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.
想知道是否可以在 urls.py 中捕获美元符号。网址被称为“/blabla/bla/$something”,我很难捕捉到这个网址,因为“$”被解释为行尾。有人可以帮忙吗。
谢谢。
在正则表达式中转义特殊字符的标准方法是在它们前面加上“\”。
所以尝试这样的事情:
url('^/blabla/bla/\$omething/$', …)