码迷,mamicode.com
首页 > 其他好文 > 详细

找出文本中特定字符串的整行脚本

时间:2017-06-28 18:52:29      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:python

#!/bin/env python
#-*- coding:utf-8 -*-
import os
import sys
from subprocess import Popen
#__author__ = huangyishan

def main():
    special_string = ‘42.120.63.223‘
    txt_content = open(‘skysrt.txt‘,‘r‘)
    for line in txt_content.readlines():
        l = line.strip()
        if l.find(special_string)>=0:
            print(l)

if __name__ == ‘__main__‘:
    main()





///

本文出自 “黄怡善的运维博客” 博客,谢绝转载!

找出文本中特定字符串的整行脚本

标签:python

原文地址:http://linuxpython.blog.51cto.com/10015972/1942713

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