正则表达式无效表达无重复

时间:2013-04-16 10:03:06

标签: regex python-2.7 regex-negation

我正在尝试从字符串

中删除除“+”之外的所有内容

我正在使用它:

phone = re.sub(r'[^+]', '', cleaned_data['phone_number'])

我也尝试了这个:

phone = re.sub(r'[^\+]', '', cleaned_data['phone_number'])

它以'无效表达'

失败

编辑:如果发现错误位于这些行中,则使用调试器

phone_patterns = [r'^0\d{9}$', r'^\+33\d{9}$']
        for phone_pattern in phone_patterns:
            if re.match(phone, phone_pattern):
                .....

stack_trace: 回溯:

File "/path/local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
  115.                         response = callback(request, *callback_args, **callback_kwargs)
File "/path/request_quote/views.py" in new
  12.         if formset.is_valid():
File "/path/local/lib/python2.7/site-packages/django/forms/formsets.py" in is_valid
  277.         err = self.errors
File "/path/local/lib/python2.7/site-packages/django/forms/formsets.py" in errors
  259.             self.full_clean()
File "/path/local/lib/python2.7/site-packages/django/forms/formsets.py" in full_clean
  297.             self._errors.append(form.errors)
File "/path/local/lib/python2.7/site-packages/django/forms/forms.py" in _get_errors
  117.             self.full_clean()
File "/path/local/lib/python2.7/site-packages/django/forms/forms.py" in full_clean
  273.         self._clean_form()
File "/path/local/lib/python2.7/site-packages/django/forms/forms.py" in _clean_form
  299.             self.cleaned_data = self.clean()
File "/path/request_quote/forms.py" in clean
  56.         QuoteForm.COUNTRY_VALIDATORS[country](self, cleaned_data)
File "/path/request_quote/forms.py" in validate_fr
  102.             if re.match(phone, phone_pattern):
File "/path/lib/python2.7/re.py" in match
  137.     return _compile(pattern, flags).match(string)
File "/path/lib/python2.7/re.py" in _compile
  242.         raise error, v # invalid expression

Exception Type: error at /en/request_quote/new/
Exception Value: nothing to repeat

编辑: 错误来自开头的'+'应该被转义但是如何?

EDIT2: 非常愚蠢,但我做了

re.match(string,pattern)

而不是

re.match(pattern,string)

2 个答案:

答案 0 :(得分:2)

试试这个正则表达式的电话号码:

/^[0-9\+]{0,1}[0-9]{1,}$/

它会接受:

1)在开始时选择+

2)数字

答案 1 :(得分:-2)

怎么样

>>> import string
>>> phone = "+1729"
>>> "".join(x for x in phone if x in string.digits)
'1729'