how to open multiple .txt files?

2 ビュー (過去 30 日間)
Lilya
Lilya 2020 年 12 月 20 日
回答済み: Ive J 2020 年 12 月 20 日
Hi all,
I have certin number of txt files with different names (ex: 5, 10, 15, 20, 25, 30, 35, 40, 80, 120, ...)
I want to open them using a loop.
Any help would be appreciated.

採用された回答

Ive J
Ive J 2020 年 12 月 20 日
If all the files have the same structure/data format, you can use datastore to merge them:
fileNames = {'t1.txt', 't2.txt', 't3.txt'}
ds = readall(datastore(fileNames)); % change other properties if needed
otherwise, you can use readtable within a loop
fileContents = {};
fileNames = {'t1.txt', 't2.txt'};
for i = 1:numel(fileNames)
fileContents{i, 1} = readtable(fileNames{i});
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeText Data Preparation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by