Hi all,
I need to validate a textbox input and can only allow decimal inputs like:
X,XXX (only one digit before decimal sign and a precision of 3)
I'm using c#
Should it be something like ^[0-9]+(.[0-9]{1,2})?$
Thanks!!!
|
1
|
|
|
|
It allow:
BUT NOT:
|
||||||||||||
|
|
|
Matches: |
||
|
|
There is an alternative approach, which does not have I18n problems (allowing ',' or '.' but not both): Just try converting, ignoring the value.
This is significantly faster than using a regular expression, see below. (The overload of Performance test results: Decimal.TryParse: 0.10277ms, Regex: 0.49143ms Code (
|
|||
|
|
|
I just found TryParse() has an issue that it accounts for thousands seperator. Example in En-US, 10,36.00 is ok. I had a specific scenario where the thousands seperator should not be considered and hence regex "\d(.\d)" turned out to be the best bet. Ofcourse had to keep the decimal char variable for different locales. |
||
|
|
|
|
As I tussled with this, TryParse in 3.5 does have NumberStyles: The following code should also do the trick without Regex to ignore thousands seperator. double.TryParse(length, NumberStyles.AllowDecimalPoint,CultureInfo.CurrentUICulture, out lengthD)) Not relevant to the original question asked but confirming that TryParse() indeed is a good option. |
||
|
|
decimal.TryParse)? – Konrad Rudolph Nov 22 at 18:42