我正在尝试将来自 URL 的 GET 字符串与数据库中的字段匹配,该字段是相同的字符串,没有任何标点符号或空格。例如:
URL: http://www.mysite.com/JohnBSmith/
And the string I'm trying to match in the database is: "John B. Smith"
我可以用正则表达式做到这一点吗?一个问题是我不知道会有多少标点符号或空格。
我如何用 Django 做到这一点?我想写成这样的形式:
myVariable = MyModel.objects.filter(foo=bar)
先感谢您。