正则表达式允许从

正则表达式允许从

本文介绍了正则表达式允许从-100到+200的十进制数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

谁能在正则表达式上帮助我,允许输入从-100.000到+200.000的数字.

在此先感谢

问候
Sherin

Hi All,

Can anyone help me on regular expression to allow numbers from -100.000 to +200.000.

Thanks in advance

Regards
Sherin

推荐答案

bool ValidateFloat(string s)
    {
    float f;
    if (float.TryParse(s, out f))
        {
        if ((f >= -100.000) && (f <= 200.000))
            {
            return true;
            }
        }
    return false;
    }

如果没有别的,它更容易阅读和理解!

If nothing else, it is a lot easier to read and understand!


这篇关于正则表达式允许从-100到+200的十进制数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 12:19