I have a list of names that I want to match case insensitive, is there a way to do it without using a loop like below?
a = ['name1', 'name2', 'name3']
result = any([Name.objects.filter(name__iexact=name) for name in a])
|
I have a list of names that I want to match case insensitive, is there a way to do it without using a loop like below?
|
|||
|
|
|
Unfortunatley, there are no "iin" field lookup. But there is a iregex that might be usefull, like so:
or even:
Note that if a can contain characters that are special in a regex, you need to escape them properly. |
|||
|
|
Adding onto what Rasmuj said, escape any user-input like so
|
|||
|
|
|
Keep in mind that at least in MySQL you have to set
So, if portability is not crucial and you use MySQL you may choose to ignore the issue altogether. |
|||
|
|