1

我正在读取一个 .xls 文件,然后在里面处理它并在我的程序结束时重写它。我想知道是否有人可以帮助我解析日期,因为我的输入文件名类似于 file_1_2010_03_03.csv

我希望我的输出文件是

新文件_2010_03_03.xls

有没有办法合并到 matlab 程序中,所以我不必手动编写命令
xlswrite('newfile_2010_03_03.xls', M); 每次都更改日期,因为我输入具有不同日期的文件,
例如 file_2_2010_03_04.csv。

也许我不清楚>我正在使用 uigetfile 以 file_1_2010_03_03.csv、file_2_2010_03_03.csv、file_3_2010_03_03.csv 格式输入 3 个差异文件

现在我正在处理我的程序中的文件并编写 4 个名为 newfileX_3_2010_03_03.xls、newfileXY_3_2010_03_03.xls、newfileXZ_3_2010_03_03.xls、newfileYZ_3_2010_03_03.xls 的输出文件

所以我的日期不是当前日期,但我需要输入文件中的日期并将其附加到我的 xlswrite 的新名称中。

所以想知道是否有办法我可以写一个通用的

xlswrite('xxx'M); 这将选择我想要的名称,而不是每次我输入一个新文件时我都有 2 修改名称'xxx'

谢谢

谢谢

4

4 回答 4

1

看起来我误解了您对“file_1”、“file_2”的含义——我认为数字 1 和 2 具有某种重要性。

oldFileName = 'something_2010_03_03.csv';
%# extract the date (it's returned in a cell array
theDate = regexp(oldFileName,'(\d{4}_\d{2}_\d{2})','match');
newFileName = sprintf('newfile_%s.xls',theDate{1});

带说明的旧版本

我假设您所有文件中的日期都是相同的。所以你的程序会去

%# load the files, put the names into a cell array
fileNames = {'file_1_2010_03_03.csv','file_2_2010_03_03.csv','file_3_2010_03_03.csv'};

%# parse the file names for the number and the date
%# This expression looks for the n-digit number (1,2, or 3 in your case) and puts
%# it into the field 'number' in the output structure, and it looks for the date
%# and puts it into the field 'date' in the output structure
%# Specifically, \d finds digits, \d+ finds one or several digits, _\d+_
%# finds one or several digits that are preceded and followed by an underscore
%# _(?<number>\d+)_ finds one or several digits that are preceded and follewed 
%# by an underscore and puts them (as a string) into the field 'number' in the 
%# output structure. The date part is similar, except that regexp looks for 
%# specific numbers of digits
tmp = regexp(fileNames,'_(?<number>\d+)_(?<date>\d{4}_\d{2}_\d{2})','names');
nameStruct = cat(1,tmp{:}); %# regexp returns a cell array. Catenate for ease of use

%# maybe you want to loop, or maybe not (it's not quite clear from the question), but 
%# here's how you'd do with a loop. Anyway, since the information about the filenames
%# is conveniently stored in nameStruct, you can access it any way you want.
for iFile =1:nFiles
   %# do some processing, get the matrix M

   %# and create the output file name
   outputFileX = sprintf('newfileX_%s_%s.xls',nameStruct(iFile).number,nameStruct(iFile).date);
   %# and save
   xlswrite(outputFileX,M)
end

有关如何使用它们的更多详细信息,请参阅正则表达式。此外,您可能对用 uipickfiles替换 uigetfile 感兴趣。

于 2010-03-16T16:27:48.003 回答
0

我不明白您是否要根据日期构建文件名。如果您只想更改您读取的文件的名称,您可以这样做:

filename = 'file_1_2010_03_03.csv';
newfilename = strrep(filename,'file_1_', 'newfile_');
xlswrite(newfilename,M)

更新:

从文件名中解析日期:

dtstr = strrep(filename,'file_1_','');
dtstr = strrep(dtstr,'.csv','');
DT = datenum(dtstr,'yyyy_mm_dd');
disp(datestr(DT))

根据日期构建文件名(例如今天):

filename = ['file_', datestr(date,'yyyy_mm_dd') '.csv'];
于 2010-03-16T16:25:21.367 回答
0

如果您来自UIGETFILE的 3 个文件的名称都具有相同的日期,那么您可以只使用其中一个来执行以下操作(在您处理完 3 个文件中的所有数据之后):

fileName = 'file_1_2010_03_03.csv';          %# One of your 3 file names
data = textscan(fileName,'%s',...            %# Split string at '_' and '.'
                'Delimiter','_.');
fileString = sprintf('_%s_%s_%s.xls',..      %# Make the date part of the name
                     data{1}{(end-3):(end-1)});
xlswrite(['newfileX' fileString],dataX);     %# Output "X" data
xlswrite(['newfileXY' fileString],dataXY);   %# Output "XY" data
xlswrite(['newfileXZ' fileString],dataXZ);   %# Output "XZ" data
xlswrite(['newfileYZ' fileString],dataYZ);   %# Output "YZ" data

函数TEXTSCAN用于在字符出现'_'的位置分解旧文件名。'.'然后使用函数SPRINTF将日期的各个部分重新组合在一起。

于 2010-03-16T16:41:51.983 回答
0

据推测,所有这些文件都位于某个目录中,您希望批量处理它们。您可以使用这样的代码来读取特定目录中的文件并找到以“csv”结尾的文件。这样,如果您想处理一个新文件,您根本不需要更改您的代码——您只需将它放到目录中并运行您的程序。

extension = 'csv';

files = dir();  % e.g. use current directory

% find files with the proper extension
extLength = length(extension);
for k = 1:length(files)
    nameLength = length(files(k).name);
    if nameLength > extLength
        if (files(k).name((nameLength - extLength + 1):nameLength) == extension)
            a(k).name
            % process file here...
        end
    end
end

您可以通过合并 Jonas 建议的正则表达式处理使其更紧凑。

于 2010-03-16T16:50:35.943 回答