I saw the new capabilities to search the stash, and i can make it search for weavers will items with 1-9 weavers will no problem but as soon as i up it to 10 or above, it breaks it. My goal is to search for all items with weavers will of 15 or below but im having troubles getting it right, anyone know what im doing wrong or can help me achieve this?
/[1-9] Weaver’s Will/ works
/[1-10] Weaver’s Will/ doesnt
That’s not how regex works. You’ll want something like:
/1[0-9] → returns 10 to 19
/[1-2][0-9] → 10 to 29
/0[5-] Weaver’s Will|[1-2][0-9] Weaver’s Will → returns 5 to 29
etc.
There are simpler ways to do this, but this was just a quick and dirty way to do it.
You should check a guide on regex. It might help you use this feature better.
ty for the help! Never used regex before, was just trying to follow what i saw in the examples and appears i didnt do it right. Ill have to look into it.
I can appreciate that the devs are trying to help us search but like… For one thing i feel like in order to try to just search through my stash i need to learn an entire coding language. Even just trying to find/make an expression to fit my need right now… is hitting a dead end because theres a character limit for some reason when i try to search in the stash. So trying to find weaver’s will items with 1-15 seems to take up too much space and i cant fit it within the character limit. Was there really no options for the devs to implement something more user friendly??
EDIT- Searching more theres other search options available and they are much simplier then the regex. When i originally made the post i was using the regex example without knowing what it was and went down the rabbit hole of how to make that variation work had no luck. I was just looking for any way possible to fit what i was searching for. theres a very easy WW command now so just using WW15- solves it