Borrar filtros
Borrar filtros

how can I convert comma with semicolan and then again point with comma for a multiple csv files?

8 visualizaciones (últimos 30 días)
Hello Matlab Helpers,
I have some csv files (english) which i need to convert in german version. I have not done it before. Can anyone help me please?
What i need to do is
I want to convert first 1. comma with semicolan and then again
2. point with comma for same csv file
and these same ruling for all other csv files and want to save it with csv. format.
My trial but getting error that *Invalid file identifier*:
P = 'C:\Users\Cha\Desktop';%relative/absolute path to the folder where the files are saved';
S = dir(fullfile(P,'*.csv'));
for k = 1:numel(S)
myfilename=sprintf('scope_%d.csv',k);
fidi=fopen(myfilename,'rt')
mydatacoma=textscan(fidi,'%s%s','CollectOutput',1);
fclose(fidi)
mydataadot{k}=strrep(mydatacoma,',',';');
myfinal{k}=strrep(mydataadot{1},'.',',');
end
Thank you very much in advance
Regards,
Cha

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 6 de Dic. de 2020
Try this
str = fileread('scope_0.csv');
str = replace(str, {',', '.'}, {';', ','});
f = fopen('outfile.csv', 'wt');
fprintf(f, '%s', str);
fclose(f);
  5 comentarios
Mohammed Cha
Mohammed Cha el 6 de Dic. de 2020
Thank you It works. I found the file also.
Is it possible to make it for multiple files in loop?

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by