How can I find all empty try ... except blocks with GExperts grep? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:59:22Z http://stackoverflow.com/feeds/question/969392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/969392/how-can-i-find-all-empty-try-except-blocks-with-gexperts-grep 1 How can I find all empty try ... except blocks with GExperts grep? mjustin 2009-06-09T11:03:56Z 2009-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#969485 5 Answer by Lieven for How can I find all empty try ... except blocks with GExperts grep? Lieven 2009-06-09T11:26:53Z 2009-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#969966 0 Answer by dummzeuch for How can I find all empty try ... except blocks with GExperts grep? dummzeuch 2009-06-09T13:09:01Z 2009-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>