115
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 with a sign could be for example
^[-+]?[0-9]+$
meaning
^
β start of string[-+]?
β an optional (this is what?
means) minus or plus sign[0-9]+
β one or more digits (the plus means βone or moreβ and[0-9]
is another way to say\d
)$
β end of string
Note: having the sign considered part of the number is ok only if you need to parse just the number. For more general parsers handling expressions itβs better to leave the sign out of the number: source streams like 3-2
could otherwise end up being parsed as a sequence of two integers instead of an integer, an operator and another integer. My experience is that negative numbers are better handled by constant folding of the unary negation operator at an higher level.
16
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
- [Django]-Django.db.utils.OperationalError Could not connect to server
- [Django]-Why is Django throwing error "DisallowedHost at /"?
- [Django]-Django post_save() signal implementation
10
I prefer ^[-+]?([1-9]\d*|0)$
because ^[-+]?[0-9]+$
allows the string starting with 0
.
RE_INT = re.compile(r'^[-+]?([1-9]\d*|0)$')
class TestRE(unittest.TestCase):
def test_int(self):
self.assertFalse(RE_INT.match('+'))
self.assertFalse(RE_INT.match('-'))
self.assertTrue(RE_INT.match('1'))
self.assertTrue(RE_INT.match('+1'))
self.assertTrue(RE_INT.match('-1'))
self.assertTrue(RE_INT.match('0'))
self.assertTrue(RE_INT.match('+0'))
self.assertTrue(RE_INT.match('-0'))
self.assertTrue(RE_INT.match('11'))
self.assertFalse(RE_INT.match('00'))
self.assertFalse(RE_INT.match('01'))
self.assertTrue(RE_INT.match('+11'))
self.assertFalse(RE_INT.match('+00'))
self.assertFalse(RE_INT.match('+01'))
self.assertTrue(RE_INT.match('-11'))
self.assertFalse(RE_INT.match('-00'))
self.assertFalse(RE_INT.match('-01'))
self.assertTrue(RE_INT.match('1234567890'))
self.assertTrue(RE_INT.match('+1234567890'))
self.assertTrue(RE_INT.match('-1234567890'))
- [Django]-Django runserver permanent
- [Django]-What's the difference between staff, admin, superuser in django?
- [Django]-Django models.py Circular Foreign Key
9
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.
- [Django]-Get protocol + host name from URL
- [Django]-ReactJS with Django β real usage
- [Django]-Django ImportError: cannot import name 'render_to_response' from 'django.shortcuts'
0
import re
num="12.345678"
y = re.findall('\.[0-9.]+',num)
print(y)
Answer= [β.345678β]
After that, you can convert string to float.
- [Django]-Django: Equivalent of "select [column name] from [tablename]"
- [Django]-Google Static Maps URL length limit
- [Django]-How does the get_or_create function in Django return two values?