Deleting sentences in database file

0

1

I'm writing a MD5 based antivirus, and my friend send to me a document with thousands of samples and their MD5. All is fine, but I have to delete all sentences what contain "File does not exists:" along with the short numbers between Virus name and the MD5 hash.

How can I accomplish this?

Screen of problem:

nullifier

Posted 2013-11-25T20:01:57.430

Reputation: 9

1You should mention, which db do you use. – peterh - Reinstate Monica – 2013-11-25T20:06:38.187

since you appear to be using NPP, I would use regular expressions with the Find/Replace feature. the "File Does Not Exist" error is easy enough to replace, and the number column appears to have a predictable number of whitespace characters on either side, so you can match that with a pattern and replace them with "". – Frank Thomas – 2013-11-25T20:49:38.863

No answers