How to convert between "#,##0" and "{0:n2}" style format string representations? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:22:45Zhttp://stackoverflow.com/feeds/question/569242http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/569242/how-to-convert-between-0-and-0n2-style-format-string-representations0How to convert between "#,##0" and "{0:n2}" style format string representations?Drew Noakes2009-02-20T11:36:18Z2009-02-20T13:28:48Z
<p>.NET supports two types of string formatting.</p>
<p>I'm in a situation where existing configuration data has <code>#,##0</code> style formatting. A new feature requires formatting to the same output, but the API needed for this feature only accepts formatting of type <code>{0:n2}</code>.</p>
<p>Does anyone know of a means to convert between these two representations for numeric types? <code>DateTime</code> can be ignored.</p>
<p><strong>EDIT</strong> I've learned that:</p>
<ul>
<li><p>The <code>{0:n2}</code> style is known as <a href="http://msdn.microsoft.com/en-us/library/dwhawy9k(VS.80).aspx" rel="nofollow">standard numeric formatting</a></p></li>
<li><p>The <code>#,##0</code> style is known as <a href="http://msdn.microsoft.com/en-us/library/0c899ak8(VS.80).aspx" rel="nofollow">custom numeric formatting</a></p></li>
</ul>
http://stackoverflow.com/questions/569242/how-to-convert-between-0-and-0n2-style-format-string-representations/569450#5694501Answer by Arjan Einbu for How to convert between "#,##0" and "{0:n2}" style format string representations?Arjan Einbu2009-02-20T12:43:23Z2009-02-20T13:00:42Z<p>No, you can't.</p>
<p>From your <a href="http://msdn.microsoft.com/en-us/library/dwhawy9k(VS.80).aspx" rel="nofollow">link to the MSDN articles about standard format</a> strings, you'll find:</p>
<blockquote>
<p>The actual negative number pattern,
number group size, thousand separator,
and decimal separator are specified by
the current NumberFormatInfo object.</p>
</blockquote>
<p>So the standard formatting specifiers will vary depending on which culture the program is running under.</p>
<p>Since your custom formating specifies exactly how the number is going to look, whatever the culture the program is running under. Its allways gonna look the same.</p>
<p>The culture the program is running under isn't known during compile time, it's a runtime property.</p>
<p>So the answer is: No, you can't map automatically, because there isn't a one-to-one consistent mapping.</p>
http://stackoverflow.com/questions/569242/how-to-convert-between-0-and-0n2-style-format-string-representations/569566#5695660Answer by Drew Noakes for How to convert between "#,##0" and "{0:n2}" style format string representations?Drew Noakes2009-02-20T13:28:48Z2009-02-20T13:28:48Z<p><strong>HACK ALERT!!!</strong></p>
<p>As <a href="http://stackoverflow.com/questions/569242/how-to-convert-between-0-and-0n2-style-format-string-representations/569450#569450">Arjan pointed out in his excellent answer</a> what I want to do isn't possible in a bullet proof fashion across all locales (Thanks Arjan).</p>
<p>For my purposes, I know I'm only dealing with numbers and the major thing I'm concerned with is having the same number of decimal places. So here's my hack.</p>
<pre><code>private static string ConvertCustomToStandardFormat(string customFormatString)
{
if (customFormatString == null || customFormatString.Trim().Length == 0)
return null;
// Percentages do not need decimal places
if (customFormatString.EndsWith("%"))
return "{0:P0}";
int decimalPlaces = 0;
int dpIndex = customFormatString.LastIndexOf('.');
if (dpIndex != -1)
{
for (int i = dpIndex; i < customFormatString.Length; i++)
{
if (customFormatString[i] == '#' || customFormatString[i] == '0')
decimalPlaces++;
}
}
// Use system formatting for numbers, but stipulate the number of decimal places
return "{0:n" + decimalPlaces + "}";
}
</code></pre>