Java
文章平均质量分 83
thejtechs
Do whatever I want, Enjoy and Innovation.
展开
-
十个你需要知道的正则表达式
正则表达式在日常开发中扮演着重要的角色,尽管它比较难debug.下面给介绍下比较常用的正则表达式的用法 1, 用户名 ^[a-z0-9_-]{3,15}$ ^ # Start of the line [a-z0-9_-] # Match characters and symbols in the list, a-z, 0-9 , un转载 2012-08-30 17:38:10 · 350 阅读 · 0 评论 -
标准java调用外部命令的写法
闲着没事写了个java调用外部命令的例子,供以后参考用,不得不说代码行比用perl多了好几个数量级 perl版本 my @result = qx(ls); # runs command and returns its STDOUT my @results = `ls`; # dito, alternative syntax system "ls"; # runs command and原创 2012-09-07 00:22:50 · 490 阅读 · 0 评论