MATLAB: Reading text number combination with comma delimiter

text file

I'm trying to read a file containing sth like
xxx:, 0.1, 3.2, 2.2
xxx:, 0.3, 2.0, 3.0
dlmread(filename0,'',0,1); skips the first column but still reads in the comma.
How can I input the numbers only? thanks!

Best Answer

solved, just for reference the following works
textscan(fileID,'%s %f %f %f\n','delimiter',',')