RegEx Search for Set Prices in Stash Tab
i cant find any examples how i can search for like all Exact Prices <5 Chaos
/Edit: probably wrong forum sorry Last edited by Mexy on Jan 14, 2024, 3:27:07 PM Last bumped on Jan 21, 2024, 12:27:17 AM
| |
I’m not sure if I understand your question, but wouldn’t “[1-5] chaos” do the trick of finding anything that’s listed for 1-5 chaos? Can’t really expect poe to do currency conversion of course.
| |
" unfortunately its not that easy it will also show all items that have "1-5 Chaos anywhere in the price" for example 25 chaos or 155 chaos Last edited by Mexy on Jan 20, 2024, 2:24:37 PM
| |
I can't log in and check at the moment, but something like this might work:
" If that doesn't work, instead of the \s (whitespace), possibly one of the following: \b (word boundary) \D (not a digit) \W (not a word character) a carat ^ (start of string or line depending on the regex engine) \A (Beginning of string) |
|
" this one works thank you very much! |