|
|
Re: Pull out specific numbers from unstructured text file
Posted:
Feb 9, 2013 3:53 PM
|
|
On 2/9/2013 1:12 PM, Stan wrote: > ^^^^^Okay I think I don't understand Lines 5,7,8 in your shortcut code: > > Line 1: > fid=fopen(....,'rt'); > Line 2: > l=' '; > Line 3: > while 1 > Line 4: > l=fgetl(fid);
do not use l as variable name as hard to read from 1. use L and not l.
--Nasser
|
|