将时间戳统一为日期字符串



MATLAB R2015b

我有一个表格,其中包含各种格式的日期字符串和时间字符串,每行分为两列:

11.01.2016 | 00:00:00 | data
10/19/16 | 05:29:00 | data
12.02.16 | 06:40 | data

我想将这两列转换为具有通用格式的一列:

31.12.2017 14:00:00

我当前的解决方案在每一行上使用循环并将列组合为字符串,检查各种格式以使用具有适当格式字符串的日期时间,然后将 datestr 与所需的格式字符串一起使用。日期时间无法自动确定输入字符串的格式。

可以想象,这对于大型表(大约 50000 行(来说非常慢。

有没有更快的解决方案?

提前谢谢。

我尝试对代码进行矢量化。诀窍是

  1. 将表>单元格转换为字符数组>,然后
  2. 操作字符字符串,然后
  3. 从字符数组转换回来>单元格>表

此外,还有一个重要的位可以以矢量化的方式填充所有具有"null"字符的较短透镜的单元格。没有这个,就不可能从单元格>字符数组进行转换。这是代码。高氯联苯 全部清除

%% create Table T
d={'11.01.2016';
   '10/19/16';
   '12.02.16'};
t={'00:00:00';
  '05:29:00';
  '06:40'};
dat=[123;
    456;
    789];
T = table(d,t,dat);
%% deal with dates in Table T
% separate date column and convert to cell
dd = table2cell(T(:,1));
% equalize the lengths of all elements of cell
% by padding 'null' in end of shorter dates
nmax=max(cellfun(@numel,dd));
func = @(x) [x,zeros(1,nmax-numel(x))];
temp1 = cellfun(func,dd,'UniformOutput',false);
% convert to array for vectorized manipulation of char strings
ddd=cell2mat(temp1);
% replace the separators in 3rd and 6th location with '.' (period)
ddd(:,[3 6]) = repmat(['.' '.'], length(dd),1);
% find indexes of shorter dates 
short_year_idx = find(uint16(ddd(:,nmax)) == 0);
% find the year value for those short_year cases
yy = ddd(short_year_idx,[7 8]);
% replace null chars with '20XX' string in desirted place
ddd(short_year_idx,7:nmax) = ...
    [repmat('20',size(short_year_idx,1),1) yy];
% convert char array back to cell and replace in table
dddd = mat2cell(ddd,ones(1,size(d,1)),nmax);
T(:,1) = table(dddd);
%% deal with times in Table T
% separate time column and convert to cell
tt = table2cell(T(:,2));
% equalize the lengths of all elements of cell
% by padding 'null' in end of shorter times
nmax=max(cellfun(@numel,tt));
func = @(x) [x,zeros(1,nmax-numel(x))];
temp1 = cellfun(func,tt,'UniformOutput',false);
% convert to array for vectorized manipulation of char strings
ttt=cell2mat(temp1);
% find indexes of shorter times (assuming only ':00' in end is missing
short_time_idx = find(uint16(ttt(:,nmax)) == 0);% dirty hack, as null=0 in ascii
% replace null chars with ':00' string
ttt(short_time_idx,[6 7 8]) = repmat(':00',size(short_time_idx,1),1);
% convert char array back to cell and replace in table
tttt = mat2cell(ttt,ones(1,size(t,1)),nmax);
T(:,2) = table(tttt);

如果您将两列单元格数组称为 c1c2 ,那么这样的事情应该可以工作:

c = detestr(datenum(strcat(c1,{' '},c2)), 'dd.mm.yyyy HH:MM:SS')

然后,您需要删除旧列并将此列放在它们的位置c。 然而,在内部,datenum一定在做一些与你正在做的事情类似的事情,所以我不确定这是否会更快。我怀疑这是因为(我们可以希望(标准功能得到优化。

如果您的表未将这些表示为单元格数组,则可能需要执行预处理步骤以形成用于strcat的单元格数组。

相关内容

  • 没有找到相关文章

最新更新