mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 09:51:50 +02:00
+ Added ex88
This commit is contained in:
parent
9c0247c8dd
commit
7504c62e6e
@ -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))
|
||||
|
||||
|
@ -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
9
docs/sysutex/ex88.pp
Normal file
@ -0,0 +1,9 @@
|
||||
Program example88;
|
||||
|
||||
{ This program demonstrates the LastDelimiter function }
|
||||
|
||||
uses SysUtils;
|
||||
|
||||
begin
|
||||
Writeln(LastDelimiter('\.:','c:\filename.ext'));
|
||||
end.
|
Loading…
Reference in New Issue
Block a user