I need to validate the following string to match only if the Number is greater than 0.
[D:\ifs\Pearl_Sync_Test\Client\Pub\Checkout\crm\source\crm\client\Ifs.SM.Common.MSOffice\Ifs.SM.Common.MSOffice.csproj]
47 Warning(s) 5 Error(s)
My solution so far is to match the above string
((\d)\sError\(s\))
Resulting in extracting this string, 5 Error(s)
So, is it possible to check if the Number is greater than 0 ?
Thanks