MATLAB: How to disable a whitespace delimiter with textscan

textscanwhitespace

I want to read this .txt file:
09 5e 10 10 ff
00 cd 00 f9 03
And I try to disable only the third whitespace delimiter to get the third and the fourth column in the same string.
fileID = fopen('Test.txt');
C = textscan(fileID,'%s %s %s %s','whitespace','');
fclose(fileID);
celldisp(C)
Is it possible to ignore just one whitespace?
Thanks. JB

Best Answer

Instead of artistic with textscan you can simply join the outputs:
C{3} = strcat(C{3}, C{4});