摘要:正規表達式-檢查字串是否為數值(含小數)
//using System.Text.RegularExpressions;
public bool IsNumeric(string value)
{
//return System.Text.RegularExpressions.Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
//若有引用System.Text.RegularExpressions名稱空間
return Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
}