MATLAB: How to delete the first word in each line in txt file

txt file

Hello,
How can I delete the first word in each line in txt file?
(words are seperated with space char ' ', there isn't ' ' char in a beggining of line)
Thanks

Best Answer

Read the file into string or cellstr array and extractAfter() the blank.
Not feasible to do on disk; don't even think of trying that way. Read the file, process and rewrite to disk.
Related Question