I have a log file where summary will have 0 Error(s) or X Error(s).
I tried to find Errors other than 0 Error(s).
I tried with this option in Regular expression but it does no good. \ [^0] Error(s)
Am I missing anything else?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this here
You don’t need to escape spaces, but you need to escape brackets, if you want to match them literally. And be careful with
[^0], it will match anything but a 0 (e.g. akÖ{@), not only other digits.This expression will also match numbers with more than one digit.