Hola manujimenez.
Por favor cuando incluyas código en tus mensajes usa los TAG's. La imágen muestra como hacerlo:
Tu consulta:
Código Delphi
[-]
procedure TForm2.Button1Click(Sender: TObject);
var
ss : TStrings;
begin
ss := TStringList.Create;
try
ss.LoadFromFile('c:\archivo.txt');
ss.Text := StringReplace(ss.Text, '22.150', '28.250', [rfReplaceAll]);
ss.SaveToFile('c:\archivo2.txt')
finally
ss.Free
end
end;
Saludos.
