Page 1 of 1

Quick search with multiple words

Posted: Wed Apr 22, 2020 7:22 am
by modos
Hello,
is there a way in quick search to insert multiple words?
example: concrete+diffuse+4K
Thanks

Re: Quick search with multiple words

Posted: Tue Apr 28, 2020 12:11 pm
by xnview
do you have tried something like

Code: Select all

(concrete|diffuse)

Re: Quick search with multiple words

Posted: Wed Apr 29, 2020 8:48 pm
by modos
Thancks for your reply.
I have tried but whit concrete|diffuse i have all concrete and all diffuse textures,
not only the textures that contain concrete and diffuse at the same time.

Re: Quick search with multiple words

Posted: Wed Apr 29, 2020 9:49 pm
by michel038
With regular expression, it's not simple to get word1 AND word2

This is only possible in one string (like text in IPTC Caption) , but not possible for search in multiple keywords (these are different strings)

If word2 follows word 1 , use

Code: Select all

word1.*word2

If word1 is after word2, you must use :

Code: Select all

word2.*word1
in one shot :

Code: Select all

word1.*word2|word2.*word1
:evil: :twisted: :mrgreen:

Re: Quick search with multiple words

Posted: Wed Apr 29, 2020 10:24 pm
by modos
Perfect, this is the trick.
Thanks