Информационный сервер для программистов: Исходники со всего света. Паскальные исходники со всего света
  Powered by Поисковый сервер Яndex: Найдется ВСЁ!
На Главную Pascal Форум Информер Страны мира
   Файловые Утилиты    >>    findrep
   
 
 Поиск и замена строк в файле  Дмитрий Стефанков 12.07.1994

Replaces any occurence of wanted string



6k 
 

{ LIBRARY SYSTEM UTILITIES } { MODULE FIND_AND_REPLACE } { FILE NAME FINDREP.PAS } { PURPOSE Replaces any occurence of wanted string } { VERSION 1.30 } { DATE 28-Oct-93 } { COMPANY Freelance Software Engineer } { ADDRESS Isakowskogo str, 4-2-30 } { Moscow, 123181 } { USSR } { Tel. 007 (095) 944-6304 } { COPYRIGHT NOTICE Copyright (C) 1987-1993, Dmitry Stefankov } { RESTRICTED RIGHTS AVAILABLE ONLY FOR FREE DISTRIBUTION, } { NOT FOR COMMERCIAL PURPOSE } { OPERATING SYSTEM MS/PC-DOS Version 3.30 or higher } { COMPILER Turbo Pascal Version 6.0 } { (Borland International Inc.) or compatible } { ASSEMBLY LANGUAGE Microsoft MASM 5.10 or compatible } { ARGUMENTS <infile> - input stream } { <outfile> - output stream } { <instr> - input string } { <outstr> - output string } { <query> - ask user for replace match } { RETURN None } { REQUIRES None } { DESCRIPTION 1.Read input stream } { 2.Find match pattern } { 3.If found then replace to another string } { 4.Write output stream } {-----------------------------------------------------------------------}