字典翻译 问答 其它 c#保留小数点后两位怎么做?c#用match类把字符串如“17.285625”label3输出成“.MatchCollectionmc=Regex.Matches(label4.Text,@"这里面怎么写");foreach(Matchminmc){label3.Text=m.Value;}
问题标题:
c#保留小数点后两位怎么做?c#用match类把字符串如“17.285625”label3输出成“.MatchCollectionmc=Regex.Matches(label4.Text,@"这里面怎么写");foreach(Matchminmc){label3.Text=m.Value;}
问题描述:

c#保留小数点后两位怎么做?

c#用match类把字符串如“17.285625”

label3输出成“.

MatchCollectionmc=Regex.Matches(label4.Text,@"这里面怎么写");

foreach(Matchminmc)

{

label3.Text=m.Value;

}

翟社平回答:
  在C#的输出格式中,可以实现你这个功能:例:floatfl=123.4565f;doubled=23423.24234234d;Response.Write(fl.ToString("0.00"));Response.Write("");Response.Write(d.ToString("0.00"));0.00代表输出的格式也...
点击显示
其它推荐
热门其它推荐
  • 其它