Hello
Is there a way I can use Filters (12) to include only files that contain certain text but also exclude certain other text?
For example:
A1.jpg
A2.jpg
AB.jpg
AC.jpg
BC.jpg
CD.Jpg
I want to include all files that contain A but doesn't contain B.
*A* would show: A1, A2, AB, AC
* !*B* would show A1, A2, AC, CD.
I want to combine these two so the result is: A1, A2 & AC.
I don't have and can't afford commercial license so the option of name.indexOf('A') !== -1 or any other Javascript renaming wouldn't work for me.
Any help is greatly appreciated. Thank you..