Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPHPとPythonを少し知っており、ツールを探すのにはかなり精通していますが、htmファイルを解析して「http」を含むすべての文字列を返すツールや方法論を見つけることができません.
私はクイックフィックスがあることを知っています。誰?
Pythonでこれを試すことができます:
def grepFileForLines(self, fileName = "", keepLinesWith = ""): fileObj = open(fileName, 'r') matches = [] for line in fileObj: if line.find(keepLinesWith) > -1: matches.append(line) return matches