本文介绍了屏蔽文本框只接受小数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的技术从这个链接来掩盖我的文本框接受以十进制格式(数字与一个周期)的字符串。
I am using the technique from this link to mask my textbox to accept strings that are in decimal-format (Digits with a single period).
下面是我把面具正则表达式:
Here is the regex I put in the mask:
b:Masking.Mask="^\d+(\.\d{1,2})?$"
有关一些奇怪的原因,它让我输入的数字,但我不能插入期间在我的文本框。
For some odd reason, it lets me input the digits but I cannot insert the period in my textbox.
我也验证了正则表达式在这里,所以正则表达式是绝对正确的。
I've also validated the regex here so regex is definitely correct.
的
可能是什么问题?
推荐答案
修改您的正则表达式这一点:
Modify your regex with this:
^\d+([\.\d].{1,2})?$
DEMO
编辑:
以上的正则表达式也将让 123..1
即超过1小数点。所以我只是发现了这个问题,并固定在下面的一个:
The above regex will also allow 123..1
that is more than 1 decimal point. so I just found the problem and fixed with the below one:
^(\d+)?+([\.]{1})?+([\d]{1,2})?$
DEMO
这篇关于屏蔽文本框只接受小数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!