Hi Alex,
simple problem - no easy answer.
Possible solutions:1.) [X] beginning of word only (faster)
- You would have to revers logic (use NOT internally in your code)
- german: Nur Wortanfang (schneller)
2.) [X] text containing searchtext (slower)
- Simple, because renaming text only
- german: Suchtext enthalten (langsamer)
3.) full-text search (slower)
- Simple, because renaming text only
- german: Volltextsuche (langsamer)
- My favorite!
I understand that technically #3 is not a fulltext search in a sense of using the full-text index. However, it is fully understandable out of the box. At least to me

Thomas