s****n 发帖数: 700 | 1 要找到文件里边含有fill order的行, 这行只要有fill order就可以,其他都不管,
这个是要怎么写才好呢。 |
d*******8 发帖数: 3182 | 2 Python
file = open(filename, 'r')
allLines = file.readlines()
file.close()
for eachLine in allLines:
if 'fill order' in eachLine:
print eachline |
M********h 发帖数: 59 | 3 人家问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********h 发帖数: 59 | 4 in perl
$line =~ m/fill order/i;
【在 s****n 的大作中提到】 : 要找到文件里边含有fill order的行, 这行只要有fill order就可以,其他都不管, : 这个是要怎么写才好呢。
|
d*******8 发帖数: 3182 | 5 根本不需要用re的嘛,为什么一定要用re? 而且re要慢。
【在 M********h 的大作中提到】 : 人家问regular expression, 你给段没有regular expression : 的code干嘛?
|