[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
INSERT Insert Sub String into String pp 69
Syntax: Insert (SubStr, String, Position
Type: String
Form: Procedure
Purpose: Insert Sub String into String starting at Position.
----------------------------------------------------------------------------
Usage:
CONST
SubStr : String [3] = 'ABC' ; { String to insert }
Target : String [6] = 'DEF' ; { Leave room to Insert }
BEGIN
Insert (SubStr, Target, 1) ; { ABCDEF is result }
END.
See Also:
Concat
Copy
Delete
Length
Pos
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson