Hello,
is there a way in quick search to insert multiple words?
example: concrete+diffuse+4K
Thanks
Quick search with multiple words
Moderators: helmut, XnTriq, xnview
Re: Quick search with multiple words
do you have tried something like
Code: Select all
(concrete|diffuse)
Pierre.
Re: Quick search with multiple words
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.
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
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
If word1 is after word2, you must use :
in one shot :

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
Code: Select all
word1.*word2|word2.*word1



Catalogage avec XnviewMP :
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.htm
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.htm
Re: Quick search with multiple words
Perfect, this is the trick.
Thanks
Thanks