HighTechTalks DotNet Forums  

REGEX question

ASP.net ASP.net discussions (microsoft.public.dotnet.framework.aspnet)


Discuss REGEX question in the ASP.net forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
pvong
 
Posts: n/a

Default REGEX question - 12-20-2007 , 02:33 PM






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



Reply With Quote
  #2  
Old   
Alexey Smirnov
 
Posts: n/a

Default Re: REGEX question - 12-20-2007 , 02:38 PM






On Dec 20, 8:33 pm, "pvong" <phillip*at*yahoo*dot*com> wrote:
Quote:
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



Reply With Quote
  #3  
Old   
Alexey Smirnov
 
Posts: n/a

Default Re: REGEX question - 12-20-2007 , 02:44 PM



On Dec 20, 8:38 pm, Alexey Smirnov <alexey.smir... (AT) gmail (DOT) com> wrote:
Quote:
On Dec 20, 8:33 pm, "pvong" <phillip*at*yahoo*dot*com> wrote:

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$


Reply With Quote
  #4  
Old   
pvong
 
Posts: n/a

Default Re: REGEX question - 12-20-2007 , 02:53 PM



Yes and this is perfect!!!!
Thanks!


"Alexey Smirnov" <alexey.smirnov (AT) gmail (DOT) com> wrote

Quote:
On Dec 20, 8:33 pm, "pvong" <phillip*at*yahoo*dot*com> wrote:
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




Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.