https://bugs.kde.org/show_bug.cgi?id=333037
--- Comment #34 from Ioannis Iliadis-Ilousis <yannis....@gmail.com> --- Dolphin indeed supports RegEx (Regular Expressions), furthermore supports LookAhead function. So, one workaround (and also a solution for more advanced search) is to make use of LookAhead. To find every file, containing in its filename the string string1, the submission for search field is (?=.*string1) . To find every file, containing in its filename two or more strings (string1, string2, string3, etc), then is just needed concurrent repetition and adjustment of the initial expression . For two is (?=.*string1)(?=.*string2), for three (?=.*string1)(?=.*string2)(?=.*string3), etc. -- You are receiving this mail because: You are watching all bug changes.