c#保留小数点后两位怎么做?c# 用match类 把字符串如“17.285625”label3输出成“.MatchCollection mc = Regex.Matches(label4.Text,@"这里面怎么写");foreach (Match m in mc){label3.Text = m.Value ;}
问题描述:
c#保留小数点后两位怎么做?
c# 用match类 把字符串如“17.285625”
label3输出成“.
MatchCollection mc = Regex.Matches(label4.Text,@"这里面怎么写");
foreach (Match m in mc)
{
label3.Text = m.Value ;
}
答
在C#的输出格式中,可以实现你这个功能:例:float fl = 123.4565f;double d = 23423.24234234d;Response.Write(fl.ToString("0.00"));Response.Write("");Response.Write(d.ToString("0.00"));0.00代表输出的格式也...