Custom numeric format string to always display the sign - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:46:35Z http://stackoverflow.com/feeds/question/348201 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/348201/custom-numeric-format-string-to-always-display-the-sign 3 Custom numeric format string to always display the sign Craig Shearer 2008-12-07T22:17:56Z 2009-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#348242 8 Answer by gcores for Custom numeric format string to always display the sign gcores 2008-12-07T22:40:09Z 2008-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#556853 3 Answer by Luk for Custom numeric format string to always display the sign Luk 2009-02-17T13:46:03Z 2009-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>