简体   繁体   中英

decimal custom format string with fixed precision and no period

I've run into a situation which I think is beyond what you can do with custom format strings.

But the code I've written is so gross I thought I would ask anyway.

What I need is for a decimal to be displayed as either a 6 or 7 digit string, like so:

number = 12345.67M
(optional)
tenthousands thousands hundreds tens ones tenths hundredths
     1          2         3      4    5     6        7

Here's the code I've written to achieve this:

public static string ConvertDecimalToString(decimal easting, int length)
{
    var formatString = "{0:0000.00}";
    var numberAsString = string.Format(formatString, easting);
    var removePeriod = numberAsString.Replace(".", "");

    if (removePeriod.Length > length)
    {
        return removePeriod.Substring(removePeriod.Length - length, length);
    }
    else
    {
        return removePeriod.PadLeft(length, '0');
    }
}

Expected inputs and outputs:

Input           Output(6)    Output(7)
912345.67M      234567       1234567
12345.67M       234567       1234567
1234.56M        123456       0123456
1234.5M         123450       0123450
1234M           123400       0123400
234M            023400       0023400

If you want a decimal 12345.67 displayed as 1234567 (just omit the decimal point) use this trick:

decimal number = 12345.67M;
string s = string.Format("{0:0000000}", number * 100.0);

Or

string s = string.Format("{0:F0}", number * 100.0); // zero decimal places

Morale: Do not fiddle with a string produced from formatting, modify the input value instead and let the formatting do its job.

If i understand you correctly, you want to separate your number to digits

str=number.ToSting() will give a string you can iterate and create your number

str.split('.') will give you both sides of the number Then you will be able to build your stribg number dynamicly without forcing a format

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM