VBA でなければならないスクリプトを書いています。目標は、互いに含まれていない 200 以上の文字列を約 3500 ファイル (450 MB) で検索することです。各タグのファイルを個別に検索し、文字列が見つかったらファイルから抜け出すのがより効率的です (私が知る必要があるのは、そこにあることだけです)。または、すべてのタグを 1 つの行で検索する必要があります。各ファイルを 200 回以上開く必要がないようにパスしますか?
質問する
78 次
1 に答える
1
For most files opening will be the most time consuming part in a script like this as it requires disk and possibly even network operations and not just RAM memory operations (which is faster by far).
Therefore the recommendation is to Open 1 file and check for the 200+ strings in it and whatever follows from that check. Then move to the next file.
于 2012-11-01T15:20:30.737 に答える