+ Added ex88

This commit is contained in:
michael 2001-07-19 15:06:48 +00:00
parent 9c0247c8dd
commit 7504c62e6e
3 changed files with 12 additions and 1 deletions

View File

@ -39,7 +39,7 @@ OBJECTS=ex1 ex2 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10 ex11 ex12\
ex48 ex49 ex50 ex51 ex52 ex53 ex54 ex55 ex56 ex57 ex58\
ex59 ex60 ex61 ex62 ex63 ex64 ex65 ex66 ex67 ex68 ex69 ex70\
ex71 ex72 ex73 ex74 ex75 ex76 ex77 ex78 ex79 ex80 \
ex81 ex82 ex83 ex84 ex85 ex86 ex87
ex81 ex82 ex83 ex84 ex85 ex86 ex87 ex88
TEXOBJECTS=$(addsuffix .tex, $(OBJECTS))

View File

@ -87,3 +87,5 @@ ex84.pp contains an example of the Trim function.
ex85.pp contains an example of the TrimLeft function.
ex86.pp contains an example of the TrimRight function.
ex87.pp contains an example of the UpperCase function.
ex88.pp contains an example of the LastDelimiter function.

9
docs/sysutex/ex88.pp Normal file
View File

@ -0,0 +1,9 @@
Program example88;
{ This program demonstrates the LastDelimiter function }
uses SysUtils;
begin
Writeln(LastDelimiter('\.:','c:\filename.ext'));
end.