MATLAB: Read a txt file at a certain position

readtxt file

Dear All,
I am trying to write a code that will read a matrix at a certain position in a text file.
For example, the text file will contain the following
Mike Code
This code is helpful
The Values of k is
12
123
23.4
1234
184.2
I want the code to read the values of k. Thus, I want the code to search for the line "The Values of k is" and start taking the numbers from the following lines. (I don't know the line number)
Thanks

Best Answer

filecontent = fileread('YourFile.txt');
filecontent = regexprep(filecontent, '.*The Values of k is\s*','');
data = sscanf(filecontent, '%f');