How can I find all empty try ... except blocks with GExperts grep? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T17:59:22Zhttp://stackoverflow.com/feeds/question/969392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/969392/how-can-i-find-all-empty-try-except-blocks-with-gexperts-grep1How can I find all empty try ... except blocks with GExperts grep?mjustin2009-06-09T11:03:56Z2009-06-09T13:20:43Z
<p>In new versions of <a href="http://www.gexperts.org" rel="nofollow">GExperts</a>, the grep utility now supports more 'expert' expressions. </p>
<p>I have not yet found a way to locate empty try ... except blocks in Delphi sources using regular expressions, how could I do this with the GExperts grep tool?</p>
http://stackoverflow.com/questions/969392/how-can-i-find-all-empty-try-except-blocks-with-gexperts-grep/969485#9694855Answer by Lieven for How can I find all empty try ... except blocks with GExperts grep?Lieven2009-06-09T11:26:53Z2009-06-09T13:20:43Z<p>I doubt that GExperts Regex functionality allows you to search beyond line delimiters.</p>
<p>If you don't mind using a component like <a href="http://www.regular-expressions.info/delphi.html" rel="nofollow">TPerlRegEx</a>, following code should get you started to roll your own search.</p>
<pre><code>var
emptyExceptBlock: TPerlRegEx;
Results: TStringList;
emptyExceptBlock := TPerlRegEx.Create(nil);
emptyExceptBlock.RegEx := except\s+((//.*|/\*.*\*/|\(\*.*\*\))\s+)*end;
emptyExceptBlock.Options := [preExtended];
emptyExceptBlock.Subject := LoadFromFile('YourFile.pas');
Results := TStringList.Create;
if emptyExceptBlock.Match then begin
repeat
Results.Add(emptyExceptBlock.MatchedExpression);
until not emptyExceptBlock.MatchAgain;
end;
</code></pre>
http://stackoverflow.com/questions/969392/how-can-i-find-all-empty-try-except-blocks-with-gexperts-grep/969966#9699660Answer by dummzeuch for How can I find all empty try ... except blocks with GExperts grep?dummzeuch2009-06-09T13:09:01Z2009-06-09T13:09:01Z<p>There is a tool called Insert Auto Todo (which is not part of GExperts, I think I got it from CodeCentral) that automatically inserts todos into empty begin/end blocks. Maybe that's what you want?</p>