#region 检查数字
public bool IsNumeric(string value)
{
bool result;
try
{
int x = int.Parse(value);
result = true;
}
catch
{
result = false;
} try
{
double x = double.Parse(value);
result = true;
}
catch
{
result = false;
} try
{
float x = float.Parse(value);
result = true;
}
catch
{
result = false;
} return result;
}
#endregion
相关文章
- 07-28python – 来自os.listdir()的非字母数字列表顺序
- 07-28LeetCode 966. 元音拼写检查器(哈希)
- 07-282020最新编辑器集成eslint、prettier、stylelint,git提交预检查代码配置
- 07-28JS排序:localeCompare() 方法实现中文排序、sort方法实现数字英文混合排序
- 07-28Qt中检查槽函数connect是否正确
- 07-28【数字信号】基于GUI虚拟信号发生器(各种波形)【Matlab 271期】
- 07-28K210识别数字(0~9)并与单片机通信通过数字来控制小车移动
- 07-28【RT-Thread作品秀】基于ART-PI的数字图像处理与识别
- 07-28Python判断是否是数字(无法判断浮点数)(已解决)
- 07-28BF16是为深度学习而优化的新数字格式 预测精度的降低幅度最小