Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
524 views

Why does the Standard Numeric Format for percentages include a space?

The Back Story I have some decimal values which I am displaying as strings on a web page as part of a larger string. I started off using a ...
1
vote
2answers
67 views

Is there a Numeric Format String for the following?

I'm using C# and I have many integers. I was wondering if there was a numeric format string that would display the following: 12 as +12 This is needed as the application I'm working with is ...
0
votes
3answers
37 views

How to specify scaling down by 100 in custom numeric format string?

How to specify scaling down by 100 in custom numeric format string? I need to scale down a number by 100 (something like what the ',' operator does, scales it down by 1000) How do i accomplish this ...