由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 这个regular expression应该怎么写
相关主题
有没有给C用的regular expression的库?一个头痛的regular expression问题
请教Regular Expression,Regular Expression 问题
关于regular expressionregular expression
Need a regular expression for password问个REGULAR EXPRESSION的问题
简单python regular expression 问题求救Java Regular expression 请教
regular expression的一个问题Regular Expressions Cookbook, 2nd Edition
[合集] 统计,Regular Expressionpython regexp question
[合集] 求问regular expression 的问题python urlopen(), how to go back to the beginning after readlines()
相关话题的讨论汇总
话题: expression话题: eachline话题: regular话题: fill话题: alllines
进入Programming版参与讨论
1 (共1页)
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干嘛?

1 (共1页)
进入Programming版参与讨论
相关主题
python urlopen(), how to go back to the beginning after readlines()简单python regular expression 问题求救
Regular Scanner as Business Card Readerregular expression的一个问题
请教IT公司一般考勤严格吗?每周少去半天会扣工资吗?[合集] 统计,Regular Expression
how to find the size of stack??[合集] 求问regular expression 的问题
有没有给C用的regular expression的库?一个头痛的regular expression问题
请教Regular Expression,Regular Expression 问题
关于regular expressionregular expression
Need a regular expression for password问个REGULAR EXPRESSION的问题
相关话题的讨论汇总
话题: expression话题: eachline话题: regular话题: fill话题: alllines