replace comma by dot
220 views (last 30 days)
Show older comments
i have a csv file where comma is present in place of dot
this file needs to be imported to matlab & needs to replace comma by dot
4 Comments
Taiwo Bamigboye
on 4 Apr 2020
Have tried so hard to learn MATLAB on my own but it seems not working for me. Please is there anyone that knows it very well and ready to teach me via zoom or team view, off course am ready to pay. All this online learning is not intuitive for me.
Sandy Ramírez
on 10 Sep 2020
Muy buena e importante la intervención con respecto a los signos de puntuación es importante tenerle respeto a la escritura..
Accepted Answer
Jan
on 20 Oct 2012
Data = fileread(FileName);
Data = strrep(Data, ',', '.');
FID = fopen(NewFileName, 'w');
fwrite(FID, Data, 'char');
fclose(FID);
7 Comments
More Answers (1)
Carlox Velez
on 1 Apr 2016
It work super well and is a very fast solution Thanks for the answer Carlos
0 Comments
See Also
Categories
Find more on Search Path 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!