Hi Xanthic, is there any way to search A or B or (X and Y) in one string? #11
Replies: 1 comment 1 reply
-
For 8% increased maximum life try From limited testing it seems that each "" group will only match 1 mod on an item. The search (which is limited to 50 characters, 48 + 2 double quotes) implements most regex rules. primer here https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-examples-649dc1c3f285 Also note that all characters are matched as lower case. and an example of bracket based or example of "must have a word starting with c" "and" operator from https://stackoverflow.com/questions/3041320/regex-and-operator an example of a search that would work if all the mods were in the same string |
Beta Was this translation helpful? Give feedback.
-
for example, i want to search "strenght" and "dexterity" and "8% maximum life"
the number need to be exact
i tried "dexterity|strenght|"8%""um li"" but it didnt work
thank you
Beta Was this translation helpful? Give feedback.
All reactions