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

问题描述

大家好,

我需要编写一个正则表达式,该表达式允许使用
这样的数字
1.23



1

进入文本框.小数点不是强制.

欢迎任何建议或链接.. !!

Hello everyone,

I need to write a regular expression which will allow numbers like

1.23

and

1

in to the text-box. Decimal point is not the compulsion.

Any suggestion or links are welcome..!!

推荐答案



^[1-9]\d*


这篇关于允许小数和整数的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 04:22