博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
正则表达式
阅读量:5038 次
发布时间:2019-06-12

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

2013-08-07 23:18:39|  

  1. 检测用户名,长度为2-20位,可以包含英文字母、数字、下划线,以字母或数字开头,以字母或数字结束,字母区分大小写。
import rerule = re.compile(r'^[a-zA-Z0-9][a-zA-Z0-9_]{0,18}[a-zA-Z0-9]$') # 将正则表达式编译成Pattern对象str_match = rule.match(username)if str_match:            print True

 

 

转载于:https://www.cnblogs.com/zifenger/p/3515812.html

你可能感兴趣的文章
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>
百度编辑器图片在线流量返回url改动
查看>>
我对你的期望有点过了
查看>>
微信小程序wx:key以及wx:key=" *this"详解:
查看>>
下拉框比较符
查看>>
2.2.5 因子的使用
查看>>
css选择器
查看>>
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>