Custom numeric format string to always display the sign - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T07:46:35Zhttp://stackoverflow.com/feeds/question/348201http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/348201/custom-numeric-format-string-to-always-display-the-sign3Custom numeric format string to always display the signCraig Shearer2008-12-07T22:17:56Z2009-02-17T13:46:03Z
<p>Is there any way I can specify a standard or custom numeric format string to always output the sign, be it +ve or -ve (although what it shoudl do for zero, I'm not sure!)</p>
http://stackoverflow.com/questions/348201/custom-numeric-format-string-to-always-display-the-sign/348242#3482428Answer by gcores for Custom numeric format string to always display the signgcores2008-12-07T22:40:09Z2008-12-07T22:40:09Z<p>Yes, you can.
There is conditional formatting. See <a href="http://msdn.microsoft.com/en-us/library/0c899ak8.aspx" rel="nofollow">Conditional formatting in MSDN</a></p>
<p>eg: </p>
<pre><code>string MyString = number.ToString("+#;#");
</code></pre>
<p>Where each section separated by a semicolon represents positive and negative numbers</p>
<p>or:</p>
<pre><code>string MyString = number.ToString("+#;#;0");
</code></pre>
<p>if you don't want the zero to have a plus sign.</p>
http://stackoverflow.com/questions/348201/custom-numeric-format-string-to-always-display-the-sign/556853#5568533Answer by Luk for Custom numeric format string to always display the signLuk2009-02-17T13:46:03Z2009-02-17T13:46:03Z<p>Beware, when using conditional formatting the negative value doesn't automatically get a sign. You need to do </p>
<pre><code>string MyString = number.ToString("+#;-#;0");
</code></pre>