Xlswrite, strfind, excel problem.
Show older comments
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
Accepted Answer
More Answers (1)
Lucas Santana
on 13 Dec 2016
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!