C# 判断是否数字型,自动处理小数点,四舍五入后,自定义保留N位小数点

        /// 
        /// 转换为数字格式,并且四舍五入。
        /// 
        /// 传入字符数字
        /// 输入小数位数
        /// 
        public string  FormatNumber (string _s,int _i)
        {
            string mp = _s;
              if(IsNumber(_s))
            {
                Decimal T1 = Math.Round(Convert.ToDecimal(_s), _i, MidpointRounding.AwayFromZero);
                double T2 = Convert.ToDouble(T1);
                mp = T2.ToString("f"+_i); 
            }
            return mp;
        }
        //判断是否数字型,返回布尔值  true 或 false;
        public Boolean IsNumber(string _s)
        {
            double ResultNum;
            Boolean _i = double.TryParse(_s, out ResultNum);
            return _i;
        }

使用方法:
Response.Write(FormatNumber(“6.2589”,3)); //保留3位小数
Response.Write(FormatNumber(“2.65”,2)); //保留2位小数
Response.Write(FormatNumber(“2.6000”,3));
Response.Write(FormatNumber(“2.8”,0)); //保留0位小数

四舍五入后的结果:
6.259
2.65
2.600
3

你可能感兴趣的:(C# 判断是否数字型,自动处理小数点,四舍五入后,自定义保留N位小数点)