How to remove \n and empty line after combine all the lines into an array
Mostrar comentarios más antiguos
I have a txt file 'map1.txt'
1 Ai.A
2 i.i.
3 .Aii
4 AiiA
I want to concatenate all the lines of the file into an array.
'Ai.A'
'i.i.'
'.Aii'
'AiiA'
However, my arr includes ↵ and ' '
'Ai.A↵'
'i.i.↵'
'.Aii↵'
'AiiA↵'
' '
Can anyone show me how to remove ↵ and ' '
This is my code. Thank you for your help!!!
fh = fopen('map1.txt')
line = fgets(fh)
vec = [line]
while ischar(line)
line = fgets(fh);
vec(end+1,:) = line;
end
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Structures en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!