Looking for a regular expression to identify hard coded magic numbers in source code - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T13:35:02Zhttp://stackoverflow.com/feeds/question/337432http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c2Looking for a regular expression to identify hard coded magic numbers in source codeBrian2008-12-03T15:07:06Z2009-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 < 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#3375341Answer by Stephane Grenier for Looking for a regular expression to identify hard coded magic numbers in source codeStephane Grenier2008-12-03T15:35:38Z2008-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#33753911Answer by Loki for Looking for a regular expression to identify hard coded magic numbers in source codeLoki2008-12-03T15:36:15Z2008-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#3383460Answer by P Arrayah for Looking for a regular expression to identify hard coded magic numbers in source codeP Arrayah2008-12-03T18:58:19Z2008-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#11835080Answer by Richard for Looking for a regular expression to identify hard coded magic numbers in source codeRichard2009-07-26T01:33:22Z2009-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>