Hey,
is it possible to delete a combo line if it is a hit?
e.g
: is a hit
delete : in wordlist
Hey,
is it possible to delete a combo line if it is a hit?
e.g
: is a hit
delete : in wordlist
No this is not possible and will not be implemented
I believe there way you could go about this is
NB: you will have to create another file which will accept values which are not hits
Look link below to get ideas
You could let your config run get it’s hits then export the hits later use the iterating on list to compare both your hits and combo then export the not hits.
There are various ways via which you could try to include this into your config. Just look at it with fresh eyes after reading the two links above.
Something of the 3rd sort already written by
Ruri our Guide “iterating-on-lists”
BLOCK:ConstantList
value =
=> VAR @UNIQUE
ENDBLOCK
BLOCK:ConstantList
value = [“3”, “5”, “6”]
=> VAR @LIST1
ENDBLOCK
BLOCK:ConstantList
value = [“1”, “2”, “3”]
=> VAR @LIST2
ENDBLOCK
FOREACH ITEM IN LIST1
IF LISTKEY @LIST2 DoesNotContain @ITEM
BLOCK:AddToList
list = @UNIQUE
item = @ITEM
ENDBLOCK
END
END
RuriGuide example which will search for the elements that are unique only to LIST1 (and not present in LIST2) and add them to a new list called UNIQUE
You could use this then export your results are combo&nohits.txt