91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用python實現搜索文本文件內容腳本

發布時間:2021-04-12 13:47:57 來源:億速云 閱讀:392 作者:小新 欄目:開發技術

這篇文章主要介紹如何使用python實現搜索文本文件內容腳本,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

代碼如下:

import os

#根據文件擴展名判斷文件類型
def endWith(s,*endstring):
 array = map(s.endswith,endstring)
 if True in array:
  return True
 else:
  return False

#將全部已搜索到的關鍵字列表中的內容保存到result.log文件中
def writeResultLog(allExistsKeywords):
 #行分隔符
 ls = os.linesep
 #結果日志文件名
 logfilename = "result.log" #相對路徑,文件在.py文件所在的目錄中
 try:
  fobj = open(logfilename,'w')
 except IOError,e:
  print "*** file open error:",e
 else:
  fobj.writelines(['%s%s' % (keyword,ls) for keyword in allExistsKeywords])
  fobj.close() 


#搜索指定關鍵字是否在指定的文件中存在
def searchFilesContent(dirname):
 #從searchkeywords.txt文件中初始化待搜索關鍵字列表
 filename = "searchkeywords.txt" #相對路徑,文件在.py文件所在的目錄中
 #待搜索關鍵字列表
 allSearchKeywords=[]
 #遍歷文件當前行已搜索到的關鍵字列表
 existsKeywordsThisLine=[]
 #全部已搜索到的關鍵字列表
 allExistsKeywords=[]

 try:
  fobj = open(filename,'r');
 except IOError,e:
  print "*** file open error:",e
 else:
  for eachLine in fobj:
   allSearchKeywords.append(eachLine.strip('\n')); #使用strip函數去除每行的換行符
  fobj.close();

 #從excludekeywords.txt文件中初始化要排除的搜索關鍵字列表
 filename = "excludekeywords.txt" #相對路徑,文件在.py文件所在的目錄中
 #要排除的搜索關鍵字列表
 allExcludedKeywords=[]
 try:
  fobj = open(filename,'r');
 except IOError,e:
  print "*** file open error:",e
 else:
  for eachLine in fobj:
   allExcludedKeywords.append(eachLine.strip('\n')); #使用strip函數去除每行的換行符
  fobj.close();

 #從全部已搜索到的關鍵字列表排除掉不用搜索的關鍵字
 for excluedkw in allExcludedKeywords:
  if(excluedkw in allSearchKeywords):
   allSearchKeywords.remove(excluedkw);


 #遍歷打開所有要在其中搜索內容的文件,若待搜索關鍵字列表為空,則不再繼續遍歷
 for root,dirs,files in os.walk(dirname):
  for file in files:
   if endWith(file,'.java','.xml','.properties'): #只在擴展名為.java/.xml/.properties文件中搜索
    #打開文件
    filename = root + os.sep + file #絕對路徑
    filename = filename.replace("\\","\\\\") #將路徑中的單反斜杠替換為雙反斜杠,因為單反斜杠可能會導致將路徑中的內容進行轉義了,replace函數中"\\"表示單反斜杠,"\\\\"表示雙反斜杠
    try:
     fobj = open(filename,'r');
    except IOError,e:
     print "*** file open error:",e
    else:
     #遍歷文件的每一行
     for fileLine in fobj:
      #判斷當前行是否包含所有搜索關鍵字
      for keyword in allSearchKeywords:
       #若包含,并添加到該行已搜索到的關鍵字列表中
       if keyword.upper() in fileLine.upper(): #將搜索關鍵字和該行文本內容都轉換為大寫后再進行匹配
        existsKeywordsThisLine.append(keyword)

      #將這些搜索到的關鍵字添加到全部已搜索到的關鍵字列表中,并包含文件名信息
      for keyword in existsKeywordsThisLine:
       allExistsKeywords.append(keyword+"\t"+filename.replace("\\\\","\\"))

      #將這些搜索到的關鍵字從待搜索關鍵字列表中移除(后續將不再搜索該關鍵字)
      for keyword in existsKeywordsThisLine:
       allSearchKeywords.remove(keyword)

      #清空該行已搜索到的關鍵字列表內容
      existsKeywordsThisLine = []

      #若所有的關鍵字都搜索到了,則記錄日志文件,并結束搜索工作
      if len(allSearchKeywords)==0:
       fobj.close();
       writeResultLog(allExistsKeywords)
       print "DONE!",
       return
     fobj.close();

 #全部文件遍歷結束
 writeResultLog(allExistsKeywords)
 print "DONE!",



#僅當本python模塊直接執行時,才執行如下語句,若被別的python模塊引入,則不執行
if __name__ == '__main__':
 searchFilesContent(r"G:\ccsSmartPipe\SmartPipe\src\java")

1.筆者使用該程序對java項目中的源文件內容進行關鍵字的搜索。程序入參為該項目本地文件系統路徑G:\ccsSmartPipe\SmartPipe\src\java。

2.在配置文件中searchkeywords.txt中輸入要搜索的任意多個關鍵字

如何使用python實現搜索文本文件內容腳本

3.在配置文件中excludekeywords.txt中輸入在searchkeywords.

如何使用python實現搜索文本文件內容腳本

4.程序執行完成后,即可在result.log日志文件中,查看搜索結果。即每個關鍵在哪些文件中存在。并給出每個文件的具體路徑。

如何使用python實現搜索文本文件內容腳本

以上是“如何使用python實現搜索文本文件內容腳本”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿勒泰市| 兴仁县| 上饶市| 太和县| 上杭县| 石家庄市| 庄河市| 宜兰市| 岳池县| 邮箱| 措美县| 宁远县| 太白县| 北安市| 昌都县| 岢岚县| 雅江县| 二手房| 浙江省| 宜州市| 景泰县| 饶河县| 民县| 白朗县| 历史| 西藏| 房山区| 宜兰县| 三台县| 兰州市| 永寿县| 平塘县| 万载县| 崇明县| 牙克石市| 双鸭山市| 清徐县| 南投县| 东兰县| 昌江| 英山县|