我们从Python开源项目中,提取了以下2个代码示例,用于说明如何使用django.core.validators._lazy_re_compile()。
def validate_skype(value): value = force_text(value) skype_regex = _lazy_re_compile(r'[a-zA-Z][\w,.-]+$') if skype_regex.match(value): return True raise ValidationError(_("Invalid Skype username"))
def validate_telegram(value): value = force_text(value) telegram_regex = _lazy_re_compile(r'@[a-zA-Z]\w+[a-zA-Z0-9]$') if telegram_regex.match(value): return True raise ValidationError(_("Invalid Telegram username"))