Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
import re fh = open("d:\data.txt") for line in fh: if re.search(r"p.*", line): print(line.rstrip()) fh.close() ''' run: python php '''