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.
ファイルホスティングアプリケーションを構築しています。静的ファイル内を検索できる検索フォームを作成したい (grep のようなもの)。私は干し草の山を通り抜けましたが、静的ファイル内を検索しませんでした。同じモジュールはありますか。
ファイルを開いて、文字通り内容を検索するだけです。
for line in open("file"): if "search_string" in line: <do something>
速度が本質である場合 (私はそうだと思います)、事前にデータを準備し、好みの検索サーバーで干し草の山を使い続けることができます。