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