Advanced use of tree search/highlighting in Path of Building?

Can you do an advanced search in Path of Building on the Tree page, so that it highlights all the nodes with the term "maximum life" WITHOUT highlighting the nodes that mention "minions"?

Maybe something like "maximum life -minions" or something?

Thanks.
Last bumped on May 13, 2022, 1:36:19 AM
A hover over the search bar tell us that Lua pattern matching works in PoB. While it seems that the pattern matching that is used doesn't precisely line up with the documentation, I was able to come up with this string:

^%d%% increased maximum life$

Unfortunately it doesn't highlight nodes with double digit increased max life.

Quick explanation:

^ : matches start of a string
%d : matches a number
%% : matches a percent sign
increased maximum life : matches the rest of the string
$ : matches end of a string

Hope this helps :)
Last edited by chakra#1485 on May 12, 2022, 11:10:45 PM
I saw that, but my issue is I couldn't figure out how to code an *exclusion*. How do we tell it to EXCLUDE any node with "minion" in it? This is where I am jam stuck.

Report Forum Post

Report Account:

Report Type

Additional Info