Looking for a regular expression to identify hard coded magic numbers in source code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T13:35:02Z http://stackoverflow.com/feeds/question/337432 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c 2 Looking for a regular expression to identify hard coded magic numbers in source code Brian 2008-12-03T15:07:06Z 2009-07-26T01:33:22Z <p>A frequent issue in code reviews is whether a numeric value should be hard-coded in the code or not. Does anyone know of a nice regular expression that can catch 'magic numbers' in code like:</p> <pre><code>int overDue = 30; Money fee = new Money(5.25D); </code></pre> <p>without also getting a ton of false positives like for loop initialization code?</p> <pre><code>for (int i = 0; i &lt; array.length; i++) { } </code></pre> http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c/337534#337534 1 Answer by Stephane Grenier for Looking for a regular expression to identify hard coded magic numbers in source code Stephane Grenier 2008-12-03T15:35:38Z 2008-12-03T15:35:38Z <p>Other than using a pre-built code analysis tool, the common approach is to look for all numbers outside a certain range. For example all number larger than 5 and lower than -5. You'll find that doing this gets rid of the majority of false positives. If you want to be more aggressive you can use 3 instead of 5, but you'll get more false positives...</p> http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c/337539#337539 11 Answer by Loki for Looking for a regular expression to identify hard coded magic numbers in source code Loki 2008-12-03T15:36:15Z 2008-12-03T15:36:15Z <p>A better question would be about asking what tools do that. And the answer would be:</p> <ul> <li>Checkstyle</li> <li>FxCop</li> </ul> <p>And many more static code analysis tools.</p> http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c/338346#338346 0 Answer by P Arrayah for Looking for a regular expression to identify hard coded magic numbers in source code P Arrayah 2008-12-03T18:58:19Z 2008-12-03T18:58:19Z <p>For Java I'd get <a href="http://findbugs.sourceforge.net/" rel="nofollow">FindBugs</a> and then write a custom bug detector for it to do that checking you need. For more info on writing a custom bug detector see <a href="http://www.ibm.com/developerworks/library/j-findbug2/" rel="nofollow">this link</a>.</p> http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c/1183508#1183508 0 Answer by Richard for Looking for a regular expression to identify hard coded magic numbers in source code Richard 2009-07-26T01:33:22Z 2009-07-26T01:33:22Z <p>Here's a simple regex I use to scan for magic numbers in a large PHP project:</p> <p>[^'"\w]-[1-9]\d*[^'"\w]</p> <p>This will include any number != 0 that's not surrounded by single or double quotes or letters. Tweak for your own needs as desired.</p>