c# 怎么判断文本框的内容是数字

2024-10-31 19:25:33
推荐回答(2个)
回答1:

///

/// 判断输入是否只是数字 /// /// public static bool IsOnlyNumber(string strInput) { System.Text.RegularExpressions.Match matchResult = null; matchResult = System.Text.RegularExpressions.Regex.Match(strInput, "^[0-9]+$"); if (matchResult.Success) { return true; } return false; }

回答2:

如果要最简单的可以使用int.TryParse