by Quade » Wed Oct 05, 2016 1:57 pm
Couple things you could do. You could make the accept filter more specific for example.
"[0-9]{2}k" - requires 2 numbers before the k.
"[0-9]{2,3}k" - requires 2 and up to 3 numbers before the k.
You could make the reject filter more specific. If "4k" always has a space on either side then
"\s4K\s" would match a " 4k " with a space on each side.
It uses regular expressions so, you can even use "look around". To only reject or match of specific things are around the "4k".