zoukankan
html css js c++ java
正则 表达式
var d = /(?![0-9]+$)(?![a-zA-Z]+$)(?![@*_.-]+$)([0-9A-Za-z@*_.-]){8,64}/;
检测密码:密码长度为8~64个字,包含2种以上字符类型(数字、字母、指定符号),区分大小写,注:符号仅支持@ * _ - .;、
不全是 数字:(?![0-9]+$)
不全是 字母:(?![0-9]+$)
不全是 字符: (?![@*_.-]+$)
查看全文
相关阅读:
22. Generate Parentheses
21. Merge Two Sorted Lists
20. Valid Parentheses
19. Remove Nth Node From End of List
18. 4Sum
JDK7新特性
类Enum
装饰设计模式
模板设计模式
反射
原文地址:https://www.cnblogs.com/moon-yyl/p/12780658.html
最新文章
VCL 中的 Windows API 函数(4): AdjustWindowRectEx
VCL 中的 Windows API 函数(2): ActivateKeyboardLayout
VCL 中的 Windows API 函数(1): AbortDoc
显示系统托盘列表(并执行隐藏与显示)
如何使用 URLOpenStream 函数
【转载】TCP/IP 之 大明王朝邮差
【转载】我是一个线程(修订版)
【转载】我是一个网卡
【转载】CPU阿甘
【转载】聊聊高并发系统之降级特技
热门文章
【转载】混编ObjectiveC++
【转载】从零实现3D图像引擎:(2)画2D直线不简单
【转载】从零实现3D图像引擎:(1)环境配置与项目框架
【转载】C/C++杂记:虚函数的实现的基本原理
【转载】C/C++杂记:深入虚表结构
28. Implement strStr()
26. Remove Duplicates from Sorted Array
25. Reverse Nodes in k-Group
24. Swap Nodes in Pairs
23. Merge k Sorted Lists
Copyright © 2011-2022 走看看