Making Logical search by using AND or OR operators
mlominy
Posts: 220
Is there a way to make a logical search by using AND or OR operators when looking for properties containing certain words?
For instance, searching for all properties with a Label that contain the words Thigh OR Calve? Or, the words Mouth OR Lip?
Logical search.png
469 x 556 - 36K
Comments
Redacted
Searching for arm or leg can be done using a regular expression similar to the following one:
rx:: indicates the search to be a regular expression.
ci:: indicates the search to be case insensitive (you can omit this if you want to search for the exact case)
.* indicates any character zero or multiple times (in this case they are used in front of a group and after the group)
the parentheses indicate a group where arm or leg is a valid entry. You can add as many search terms separated by | as you want here.
This is for example my search expressions that finds specific muscle morphs:
Here is an older thread with some more information sometimes however this links to documentation related to the Install Manager, which does not apply here:
https://www.daz3d.com/forums/discussion/comment/4621241/