I am trying to read a text file that has textual data and separated by delimiter say 'abc'
as consecutive characters separating the string that I want to read.
Ex: say text.txt
file, as follows:
John abc Mike abc Micheal
Sandra abc Sarah abc David
I tried the following code but it did not work because delimiter is NOT a single character:
user = textscan(fid, '%s%s%s','Delimiter','abc');
Any help is highly appreciated