码迷,mamicode.com
首页 > 编程语言 > 详细

python编写过滤指定字符的文本

时间:2015-04-04 16:55:52      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:python

#!/usr/bin/python
#coding:utf-8

import os 
import string
import sys, getopt

def Grep_start_char(Mpath, char):
    if os.path.exists(Mpath):
        GrepFile = file(Mpath)
    else:
        return "No such file or directory"

    try:
        for line in hosts:
            if line.startswith(char) or line.strip() == ‘‘:
                continue
            print line
    finally:
        hosts.close()

if __name__ == ‘__main__‘:

#opts,args = getopt.getopt(sys.argv[1:],‘‘)
    Mpath = raw_input(‘input file path: ‘)
    char = raw_input(‘input grep char: ‘)
    if Mpath and char:
        Grep_start_char(Mpath, char)

本文出自 “朴树” 博客,请务必保留此出处http://drcomfeng.blog.51cto.com/2958616/1628524

python编写过滤指定字符的文本

标签:python

原文地址:http://drcomfeng.blog.51cto.com/2958616/1628524

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!