home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
mailpro
/
stripouu.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-08-23
|
289 b
|
19 lines
unit StripOuU;
interface
function StripOut( X: string; S: string): string;
implementation
function StripOut;
var L,
I: integer;
begin
for L := 1 to length(S) do
while pos(S[L],X) <> 0 do
delete(X,pos(S[L],X),1);
StripOut := X;
end;
end.