I'm learning reg ex and I would like one that only allows integers. I could make one that only allows numbers by using d but it also allows decimal numbers which I don't want:

price = TextField(_('Price'),[validators.Regexp('\d', message=_('This is not an integer number, please see the example and try again')),validators.Optional()] 

How can I change the code to allow integer number only?

Thank you

link|improve this question

regexlib.com is gold for questions like these – wim Dec 21 '11 at 7:49
feedback

3 Answers

up vote 8 down vote accepted

Regexp work on the character base, and \d means a single digit 0...9 and not a decimal number.

A regular expression that matches only integers could be for example

^-?[0-9]+$

meaning

  1. ^ start of string
  2. -? an optional (this is what ? means) minus sign
  3. [0-9]+ one or more digits (the plus means "one or more" and [0-9] is another way to say \d)
  4. $ end of string
link|improve this answer
One minor point: \d means any decimal digit, so if you are using Python 3 it will match more than just 0..9. e.g. re.match("\d", "\u0665") will match (and also int("\u0665") gives 5). – Duncan Dec 21 '11 at 9:00
feedback

You need to anchor the regex at the start and end of the string:

^[0-9]+$

Explanation:

^      # Start of string
[0-9]+ # one or more digits 0-9
$      # End of string
link|improve this answer
This doesn't allow negative integers... not sure if OP wants to avoid them – 6502 Dec 21 '11 at 7:36
@6502: Well, since it's a validation for a price text field, I thought positive integers make more sense, but still +1 for your well-commented answer :) – Tim Pietzcker Dec 21 '11 at 7:43
Actually positive integers don't make much sense for a price text field, unless the price is in cents.. – wim Dec 21 '11 at 7:51
@wim: Nick explicitly asked for integers - that's the entire point of the question. – Tim Pietzcker Dec 21 '11 at 7:53
It's like a price but only in dollars. It's for a classifieds posting site where everything that is advertised is going to be in dollars and nothing in cents. – Nick Rosencrantz Dec 21 '11 at 11:11
feedback

You are apparently using Django.

You are probably better off just using models.IntegerField() instead of models.TextField(). Not only will it do the check for you, but it will give you the error message translated in several langs, and it will cast the value from it's type in the database to the type in your Python code transparently.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.