REGEX question

  • Thread starter Thread starter pvong
  • Start date Start date
P

pvong

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
 
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
 
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 said:
Hi Phil,

Do you need it for the RegularExpressionValidator control?

Try this one

^\d+(\.\d\d)?$

Hope it works
 
Back
Top