这个regular expression应该怎么写# Programming - 葵花宝典s*n2008-04-28 07:041 楼要找到文件里边含有fill order的行, 这行只要有fill order就可以,其他都不管,这个是要怎么写才好呢。
d*82008-04-28 07:042 楼Pythonfile = open(filename, 'r')allLines = file.readlines()file.close()for eachLine in allLines:if 'fill order' in eachLine:print eachline
M*h2008-04-28 07:043 楼人家问regular expression, 你给段没有regular expression的code干嘛?【在 d*******8 的大作中提到】: Python: file = open(filename, 'r'): allLines = file.readlines(): file.close(): for eachLine in allLines:: if 'fill order' in eachLine:: print eachline
M*h2008-04-28 07:044 楼in perl$line =~ m/fill order/i;【在 s****n 的大作中提到】: 要找到文件里边含有fill order的行, 这行只要有fill order就可以,其他都不管,: 这个是要怎么写才好呢。
d*82008-04-28 07:045 楼根本不需要用re的嘛,为什么一定要用re? 而且re要慢。【在 M********h 的大作中提到】: 人家问regular expression, 你给段没有regular expression: 的code干嘛?