Hello,
is there a way in quick search to insert multiple words?
example: concrete+diffuse+4K
Thanks
Quick search with multiple words
Moderator: xnview
-
xnview
- Author of XnView
- Posts: 47502
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
Re: Quick search with multiple words
do you have tried something like
Code: Select all
(concrete|diffuse)Pierre.
-
modos
- Posts: 3
- Joined: Wed Apr 22, 2020 7:10 am
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.
-
michel038
- XnThusiast
- Posts: 1505
- Joined: Tue Sep 27, 2016 8:18 am
- Location: France
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.*word2If word1 is after word2, you must use :
Code: Select all
word2.*word1Code: Select all
word1.*word2|word2.*word1Catalogage 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
-
modos
- Posts: 3
- Joined: Wed Apr 22, 2020 7:10 am
Re: Quick search with multiple words
Perfect, this is the trick.
Thanks
Thanks