博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python实现正则表达式匹配任意的邮箱
阅读量:6831 次
发布时间:2019-06-26

本文共 623 字,大约阅读时间需要 2 分钟。

首先来个简单的例子,利用Python实现匹配163邮箱的代码:

 

 

[python]   
 
 
  1. #-*- coding:utf-8 -*-  
  2. __author__ = '杨鑫'  
  3. import re  
  4. text = input("Please input your Email address:\n"):  
  5. if re.match(r'[0-9a-zA-Z_]{0,19}@163.com',text):  
  6.     print('Email address is Right!')  
  7. else:  
  8.     print('Please reset your right Email address!')  

 

 

接着来一个匹配所有邮箱格式的代码:

 

[python]   
 
 
  1. #-*- coding:utf-8 -*-  
  2. __author__ = '杨鑫'  
  3. import re  
  4. text = input("Please input your Email address:\n")  
  5. if re.match(r'^[0-9a-zA-Z_]{0,19}@[0-9a-zA-Z]{1,13}\.[com,cn,net]{1,3}$',text):  
  6. #if re.match(r'[0-9a-zA-Z_]{0,19}@163.com',text):  
  7.     print('Email address is Right!')  
  8. else:  
  9.     print('Please reset your right Email address!')  

你可能感兴趣的文章
【30集iCore3_ADP出厂源代码(ARM部分)讲解视频】30-5 底层驱动之旋转编码器
查看>>
[Erlang]Erlang经常使用工具解说
查看>>
PHP:第五章——字符串编码函数
查看>>
What the difference between __weak and __block reference?
查看>>
【Linux 驱动】Netfilter/iptables (八) Netfilter的NAT机制
查看>>
python模块之psutil详解
查看>>
Nexus搭建Maven私服
查看>>
linux之misc及使用misc创建字符设备
查看>>
Mac下使用crontab来实现定时任务
查看>>
Android应用内 代码截屏(获取View快照)和 禁止截屏
查看>>
mybatis中的resultMap与resultType、parameterMap与 parameterType的区别
查看>>
Lua 中 number 转换各种进制,以及string串转number
查看>>
uWSGI 踩坑记
查看>>
斗地主AI算法——第十三章の主动出牌(2)
查看>>
交易所8种作死方式
查看>>
基于Openresty+的WEB安全防护系统架构--转
查看>>
花有重开日,人无再少年
查看>>
ASP.NET MVC学习之视图篇(2)
查看>>
linux源码分析(五)-start_kernel
查看>>
[转]Android动画开发——Animation动画效果
查看>>