Replace the Tab to Space in txt
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dung Tran
el 23 de Mayo de 2023
Comentada: Dung Tran
el 23 de Mayo de 2023
1 2 3 5 6
7 8 9 10 11
hi I have text file as above, between 1 and 2 is "tab", I want to replace this "tab" by a "Space" as below:
1 2 3 5 6
7 8 9 10 11
I'm working the txt in Timetable.
0 comentarios
Respuesta aceptada
Sulaymon Eshkabilov
el 23 de Mayo de 2023
1st, read the data using readtable() and then write it back to .txt or .csv file using writetable, e.g.:
D = readtable('Data.txt');
writetable(D,'Data.txt','Delimiter',' ');
Or an easy-peasy way is use of [Ctrl] + [H] from keyboard and substitute the tabs with a single space.
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!