Can studio's parameter search/filter accept regex somehow?
![Lissa_xyz](https://farnsworth-prod.uc.r.appspot.com/forums/uploads/userpics/281/nH6Y85ISOBQ8O.png)
Trying to display all of a certain morph pack only to avoid digging through the different body parts, in this case we'll go with Rarestone's, which are all prepended with "RS". I've tried simply ^RS and install manager's way using rx::ci::^RS, to no avail (not even sure what the rx::ci:: is for in DIM filters). Does it simply not work in studio or does it need something special?
Comments
I don't think so. Scripting can, so it depends on what you are wanting to do once you find the moprhs (scripting can also get a morph's product ID if you want to identify those from a given product - I have a script that lists the morphs for a given SKU or SKUs by path, though it's not in shareable state).
I was just aiming at doing a bit of dial spinning without having to wade through other morph packs. I'd like to just leave the main Actor > Head section selected, but only see that pack of Rarestone morphs available. Unless there's a way to categorize by morph pack instead of body part?
Rob says that the filter field does in fact support Regular expressions, so I'm sorry for misleading you. Try
rx::^RS.*
instead - your initial search was jus searching for "RS", you weren't telling it accept anything at all after the initial letters.
That worked perfectly. Thank you! Out of curiousity, what are the rx::ci:: and rx:: bits used for in DIM/DS?
Rob did provide some documentation links on that:
http://docs.daz3d.com/doku.php/public/software/install_manager/referenceguide/interface/filter_field/advanced_filtering
http://docs.daz3d.com/doku.php/public/software/install_manager/referenceguide/interface/filter_field/advanced_filtering#regular_expression
http://docs.daz3d.com/doku.php/public/software/install_manager/referenceguide/interface/filter_field/advanced_filtering#case_insensitive