免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 9392 | 回复: 14
打印 上一主题 下一主题

python 如何得到匹配到string的行 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-04-26 15:06 |只看该作者 |倒序浏览

文件名:change.log
我想匹配到error并返回行.

类似于grep error change.log

用python如何实现?




change.log 文件内容

Please wait while, the wizard is runing now!

if you arrived at this page by clicking a link, check the website address in the address bar to be sure that it is the address you were expecting.

when going to a website with an address such as https://example.com try adding the 'www' to address.

if you choose to ignore this error and continue, do not enter private information into the website.

For more information, see 'Certificate Error' in Internet Explorer Help!


用perl实现如下:
#!/usr/bin/perl -w

open(F1,"change.log"||die "Cannot open change.log!";

my @grp=<F1>;

foreach my $va(@grp) {
        #print $va;

if ($va=~/error/i) {

        print "$va\n";
}
}


python怎么匹配?

论坛徽章:
0
2 [报告]
发表于 2012-04-26 15:30 |只看该作者
本帖最后由 anonymous0502 于 2012-04-26 18:25 编辑
  1. print ''.join([x for x in open('change.log').readlines() if x.find('error')!=-1])
复制代码
或者用正则表达式re

论坛徽章:
3
卯兔
日期:2013-08-15 13:17:31处女座
日期:2014-01-10 11:35:23双子座
日期:2014-01-25 02:16:06
3 [报告]
发表于 2012-04-26 21:13 |只看该作者
楼上是好人啊!

论坛徽章:
0
4 [报告]
发表于 2012-04-26 22:01 |只看该作者
anonymous0502 发表于 2012-04-26 15:30
或者用正则表达式re


!=-1 不等于-1是什么意思?

另外用re怎么实现?

论坛徽章:
0
5 [报告]
发表于 2012-04-26 22:23 |只看该作者
  1. >>> x='error xxxx'
  2. >>> x.find('error')
  3. 0
  4. >>> x.find('abc')
  5. -1
复制代码
自己试一下不就知道了

论坛徽章:
0
6 [报告]
发表于 2012-04-26 22:31 |只看该作者
  1. print ''.join([x for x in open('change.log').readlines() if re.search('error',x))
复制代码
借用一下,应该是这样,没测试

论坛徽章:
0
7 [报告]
发表于 2012-04-26 22:32 |只看该作者
回复 5# ilikeqdi


谢谢。

print ''.join([x for x in open('change.log').readlines() if x.find('error')!=-1])

这句如何忽略大小写error?


   

论坛徽章:
0
8 [报告]
发表于 2012-04-26 22:49 |只看该作者
  1. print ''.join([x for x in open('change.log').readlines() if re.search('error',x,re.I))
复制代码
忽略大小写

论坛徽章:
0
9 [报告]
发表于 2012-04-26 22:52 |只看该作者
回复 8# ilikeqdi


    string.find()能忽略大小写吗? 不用正则。

论坛徽章:
0
10 [报告]
发表于 2012-04-26 23:01 |只看该作者
好像是不行
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP