pascalabcnet/_Presentations/2015 New Features/Programs/14_FilesStr2.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

10 lines
180 B
ObjectPascal

begin
var f := OpenRead('freqs.txt');
while not f.Eof do
begin
var ss := f.ReadlnString.ToWords;
if ss[3] = 'verb' then
writeln(ss[2]);
end;
f.Close;
end.