how can I count/read an Enter as one character?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jaybee
am 9 Mär. 2014
Kommentiert: Image Analyst
am 10 Mär. 2014
so here's the problem, i have a text file named sampletext.txt containing:
Hello Word
1 2 3 4 5 6
,I used the code
fid = fopen('sampletext.txt');
A = char(fread(fid,inf)).';
L = length(A)
the expected output is 22 but is outputs 23, it counts enter as 2 character. please help. :)
thankyou!
0 Kommentare
Akzeptierte Antwort
Jan
am 9 Mär. 2014
The character you call "enter" can be char([13, 10]) for DOS formatted ASCII text. Then counting this as 2 characters is correct. Why do you think this is wrong?
But could open the file under Windows in text-mode:
fid = fopen('sampletext.txt', 'rt');
Then the line reak is converted to a char(10) implicitely. But this has the disadvantage, that is does not apply the same conversion under Linux. Writig platform dependent code is a bad programming practize, so I'd rely on counting two bytes as two characters.
0 Kommentare
Weitere Antworten (1)
Image Analyst
am 9 Mär. 2014
Why not simply use fgetl() if you want to read line by line?
2 Kommentare
Image Analyst
am 10 Mär. 2014
No but I just offered as a possibility in case he wants to and to not have to worry about 10s and 13s.
Siehe auch
Kategorien
Mehr zu Low-Level File I/O finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!