searchInFile

バージョン 1.0.0.0 (919 Bytes) 作成者: Stefan Eireiner
searches blockwise for a string or binary pattern in a file
ダウンロード: 962
更新 2006/4/12

ライセンスがありません

SEARCHINFILE searches for a binary or string pattern in a file
OFFSET = SEARCHINFILE(FILE, PATTERN)
OFFSET = SEARCHINFILE(FILE, PATTERN, BLOCKSIZE)

The pattern may be a string or a line vector.

The blocksize is the maximum size in bytes which will be in memory while searching. If no blocksize is given then 10000 is assumed. The advantage of using a blockwise search is that you can search in very big files without using much memory.

The offset is the total offset in bytes to the first place of finding. If nothing was found then OFFSET = []

Example:
offset = searchinfile('bigfile.txt', 'searchstring', 20000);

Reads the file in 20000 Byte steps and searches for the searchstring. If it was found, the total offset to the beginning of the searchstring will be returned.

引用

Stefan Eireiner (2024). searchInFile (https://www.mathworks.com/matlabcentral/fileexchange/10717-searchinfile), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersSearch Path についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0