C# Is there a built-in function to convert a forma

2019-05-21 12:10发布

How do I convert a string that's a formatted number, back to a number?

  Decimal percent = 55.76;
  String strPercent = String.Format("{0:0.0}%", percent);
  Decimal dollars = 33.5;
  String strDollars = String.Format("{0:C}", dollars);

Say later, I want to get the percent and dollar value back, as numbers. Is there any built-in way to do this using C# and asp.net? I know how I use regex and a String function, but I read about a Decimal.Parse() function from http://msdn.microsoft.com/en-us/library/ks098hd7(vs.71).aspx.

Is there a built-in function to do this? If yes, how can I use it?

2条回答
贪生不怕死
2楼-- · 2019-05-21 12:33

int.Parse, double.Parse, etc are your friends.

Edit: Missed the punctuation part. Will reinvestigate and come up with something better.

Edit 2: It turns out int.Parse actually has an overload to take the format string: http://msdn.microsoft.com/en-us/library/c09yxbyt.aspx

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-05-21 12:43

Using Decimal.Parse, you can pass a System.Globalization.NumberStyles to control how strings are parsed. This will let you convert currency strings back to decimals easily. Unfortunately NumberStyles does not support percentages, so you'll still have to strip the percentage symbol out separately.

        Decimal percent = 55.76M;
        String strPercent = String.Format("{0:0.0}%", percent);
        Decimal dollars = 33.5M;
        String strDollars = String.Format("{0:C}", dollars);

        Decimal parsedDollars = Decimal.Parse(strDollars, NumberStyles.Currency);

        Decimal parsedPercent = Decimal.Parse(
            strPercent.Replace(
                NumberFormatInfo.CurrentInfo.PercentSymbol,
                String.Empty));

See the NumberStyles documentation for more info.

查看更多
登录 后发表回答