Making Logical search by using AND or OR operators

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

  • cridgitcridgit Posts: 1,757
    edited May 2022

    Redacted

    Post edited by cridgit on
  • markusmaternmarkusmatern Posts: 553
    edited December 2021

    Searching for arm or leg can be done using a regular expression similar to the following one:

    rx::ci::.*(arm|leg).*

     

    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:

    rx::.*(Gluteus|Aponeurosis|Trochanter|Tensor|Adductors|Biceps|Gastrocnemious|Hamstrings|Iliotibial|Peroneus|Rectus|Sartorius|Semitendinosus|Soleus|Tibialis|Vastus|Oblique|Levator|Omohyoi|Sterno|Trapezius|Gastrocnemius|Extensor|Pectoral Center|Pectoralis|Sternum|Erector|Infraspinatus|Latissimus|Seratus|Teres|Anconeus|rachialis|Deltoid|Triceps|Flexor|Palmaris).*

     

    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/

     

    Post edited by markusmatern on
Sign In or Register to comment.