REGEX question
am 20.12.2007 20:33:08 von pvongCan someone help me write a regex that will accept number but NO COMMAS.
Yes to
123456.78
No to
123,456.78
Thanks!
Phil
Can someone help me write a regex that will accept number but NO COMMAS.
Yes to
123456.78
No to
123,456.78
Thanks!
Phil
On Dec 20, 8:33 pm, "pvong"
> Can someone help me write a regex that will accept number but NO COMMAS.
>
> Yes to
> 123456.78
>
> No to
> 123,456.78
>
Hi Phil,
Do you need it for the RegularExpressionValidator control?
Try this one
^\d+(\.\d\d)?$
Hope it works
On Dec 20, 8:38 pm, Alexey Smirnov
> On Dec 20, 8:33 pm, "pvong"
>
> > Can someone help me write a regex that will accept number but NO COMMAS.
>
> > Yes to
> > 123456.78
>
> > No to
> > 123,456.78
>
> Hi Phil,
>
> Do you need it for the RegularExpressionValidator control?
>
> Try this one
>
> ^\d+(\.\d\d)?$
>
> Hope it works
If the digits after the decimal point are always there:
^\d+\.\d\d$
Yes and this is perfect!!!!
Thanks!
"Alexey Smirnov"
news:d832fb24-e3b9-446d-8121-cc02a4807eab@i3g2000hsf.googleg roups.com...
> On Dec 20, 8:33 pm, "pvong"
>> Can someone help me write a regex that will accept number but NO COMMAS.
>>
>> Yes to
>> 123456.78
>>
>> No to
>> 123,456.78
>>
>
> Hi Phil,
>
> Do you need it for the RegularExpressionValidator control?
>
> Try this one
>
> ^\d+(\.\d\d)?$
>
> Hope it works
>