练习:显示/etc/passwd文件中以bash结尾的行;正则表达式:#grep‘\(bash\)\>’/etc/passwd扩展正则表达式#egrep‘(bash)\>’/etc/passwd显示/etc/passwd文件中的两位数或三位数;正则表达式:#grep-o‘[0-9]\{2,3\}‘/etc/passwd扩展正则表达式:#egrep-o‘[0-9]{2,3}‘/etc..
分类:
其他好文 时间:
2015-08-30 17:52:22
阅读次数:
169
正则表达式练习题: #region 1、匹配IP地址,4段用.分割的最多三位数字。 192.168.54.77、333.333.333.333假设都是正确的。 while (true) { Console....
分类:
Web程序 时间:
2014-09-09 15:46:38
阅读次数:
362