0
How to search string in django models.
Eg - I have word 'Helo'. how to match it with similars. Like - 'Hello', 'Helloo' , 'Hello uncle', etc. In django 1.7 database query.
1 Antwort
0
I have no experience with django but I know that the re module can help you with that problem. You could use re.match("hel.o.*")