MATLAB: How to skip lines while loading text (.txt) files

i want to skip the text lines and just want start from the numeric letters like two column that i could use two column from one fileMATLAB

zghsryfkmgcbg
fnmfmn fhmfmfjmfm njdmf
ddgjd
fgjnfm nm ncncgn
fhjmvbnmvnmhgmfh
fnmhm
fdhmdtmgkmuykmnf
fjrykj fjryjtukmfryfk
ghugfhjgkjhklhfjfgjfjfh
_1_ 3454
_2_ 4667
_3_ 5645
_4_ 4564
_5_ 76457
_6_ 4574
_7_ 46574
_8_ 6574
_9_ 746
_10_ 4
_11_ 47568
_12_ 578
_13_ 87
_14_ 56
_15_ 36
_16_ 473
_17_ 636
_18_ 3
_19_ 56

Best Answer

Thanks a lot, @Stephen Cobeldick I've found the solution. The problem was simply skipping some header line and read the rest body by two column. here the script now I am using
AAA = fopen('XXX.txt', 'rt'); % File Name XXX.txt
BBB = textscan(AAA, '%f %f', 'HeaderLines',9); % To skip 9 Header line
Column_1=BBB {1,1};
Column_2=BBB {1,2};