grep的正则表达式的练习题,然后要一定的用户及组管理以及对应权限设置相关的知识基础,方可进行测试练习。
分类:
其他好文 时间:
2018-10-18 18:49:35
阅读次数:
169
正则实践1.通过awk获取IP地址[root@localhost~]#ifconfigeth2|grepinetinetaddr:10.3.151.25Bcast:10.3.151.255Mask:255.255.255.0inet6addr:fe80::250:56ff:fe80:6e7e/64Scope:Link[root@localhost~]#ifconfigeth2|grep"\bine
分类:
系统相关 时间:
2018-05-10 20:52:29
阅读次数:
177
Regex reg = new Regex(@"<img[\s]+src[\s]*=[\s]*['""](?<picPath>.*)['""][\s]*>"); reg.Match("<img src='http://www.baidu.com'>").Groups["picPath"].Value ...