我正在尝试在用户输入时进行更改
color*red
用户想在里面搜索:
the color is red
the color is blue
我更改*
为(\W|\w|\s)*
在 Django 过滤内的正则表达式中使用它。
NameItem=NameItem.replace("*","(\W|\w|\s)*")
ItemsSelected=Items.objects.filter(Name__iregex=NameItem)
但它从来没有给我结果。
任何的想法?