码迷,mamicode.com
首页 >  
搜索关键字:regex    ( 2502个结果
常用的正则表达式 数字 手机 邮箱
import org.apache.commons.lang3.StringUtils; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by */ public class RegexUti ...
分类:移动开发   时间:2020-04-30 21:17:37    阅读次数:73
正则表达式
refer: https://deerchao.cn/tutorials/regex/regex.htm https://www.regextester.com/97209 在线测试 https://github.com/ziishaned/learn-regex/blob/master/trans ...
分类:其他好文   时间:2020-04-29 09:11:25    阅读次数:87
普通平衡树 splay
```cpp #include #include #include #include #include #include #include #include #include #include #include #include //#include #include #include #pragm... ...
分类:其他好文   时间:2020-04-28 23:29:56    阅读次数:114
phpstorm 搜索
搜索也是有很多选项的, 比如mask, regex, 比如我搜索console.table, 如果选中了regex, 那么这个点号(.)就会匹配不到真正的console.table,大概因为点号已经被处理成其他的符号了。按照一般的理解,点号不是要被处理成除了换行符以外的所有字符吗?不理解这个地方,但 ...
分类:Web程序   时间:2020-04-28 15:30:35    阅读次数:78
数据库之运算符详解
一、算术运算符注意:在除法运算和模运算中,如果除数为0,将是非法除法,返回结果为NULL。例:mysql>createtabletab1(numint);#创建一列的表mysql>insertintotab1values(64);#插入数据mysql>selectnum,num+10,num-3,num*3,num%3,num/3fromtab1;#使用各种运算符来进行返回的内容
分类:数据库   时间:2020-04-24 01:58:42    阅读次数:203
JS判断是否是IE浏览器
1、判断IE浏览器的具体版本 ...
分类:Web程序   时间:2020-04-21 09:33:29    阅读次数:70
oracle自动生成表转大小写
oracle下划线转驼峰select substr(replace(initcap('a' || 't_sys_user'), '_', ''), 2) from dual; 驼峰转下划线select regexp_replace('tSysUser', '([[:upper:]])(.)', '_ ...
分类:数据库   时间:2020-04-18 15:39:59    阅读次数:80
Code-Validator:验证固定电话号码
ylbtech-Code-Validator:验证固定电话号码 1.返回顶部 1、 using System; using System.Text.RegularExpressions; namespace Sp.Common { public class ValidatorHelper { /// ...
分类:其他好文   时间:2020-04-12 16:48:41    阅读次数:80
【原创】XAF属性身份证的正则表达式
XAF属性身份证的正则表达式 private string _identityid; [XafDisplayName("身份证号"), Size(40)] [ModelDefault("EditMaskType", "RegEx"), ModelDefault("EditMask", @"(\d{1 ...
分类:其他好文   时间:2020-04-09 22:55:29    阅读次数:138
Fiddler 屏蔽css JS PNG 等资源
REGEX:(?insx)/[^\?/]*\.(css|ico|jpg|png|gif|bmp|wav|js|jpeg)(\?.*)?$ ...
分类:Web程序   时间:2020-04-09 15:30:58    阅读次数:101
2502条   上一页 1 ... 11 12 13 14 15 ... 251 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!