Xlswrite, strfind, excel problem.
Afficher commentaires plus anciens
My excel file is been created as shown at "result.jpg".
I want something as shown at "WhatIWant.jpg"
The txt file is uploaded as "items.txt"
Thanks.
function x=testt()
fid = fopen('items.txt','r');
k=1;
while 1
tline = fgetl(fid);
if strfind(tline, 'AbilityCooldown')>0
x=strfind(tline, 'AbilityCooldown')
% tline(x:end)
sprintf('%s %f',tline)
my_cell = sprintf( 'A%s',num2str(k) );
xlswrite('testitens2.xlsx',tline,'Sheet1',my_cell);
k=k+1;
end
if ~ischar(tline)
break
end
end
end
Réponse acceptée
Plus de réponses (1)
Lucas Santana
le 13 Déc 2016
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!