NET判断输入是否为double类型

第一种:
很常见一个字符去判断是否為數字。
第二種:
用正則表邊式
using System.Text.RegularExpressions;
Regex reg=new Regex(@"^\d+(\.\d+)?$",RegexOptions.None);
// Match the double data
if(!reg.IsMatch(this.txtRefWeight.Text) || !reg.IsMatch(this.txtWeiRange.Text))
{
labelStatus.Text="重量格式錯誤!";
labelStatus.ForeColor=Color.Red;
this.btnupload.Enabled=false;
return;
}
第三種:
是最笨也最慢的方法就是用铺抓異常
try{
this.Weight=Convert.ToDouble(this.txtRefWeight.Text);//Set the Weight
this.Weight_range=Convert.ToDouble(this.txtWeiRange.Text);
}catch
{
labelStatus.Text="重量格式錯誤!";
labelStatus.ForeColor=Color.Red;
this.btnupload.Enabled=false;
return;
}

你可能感兴趣的:(.net)