DeleteFirstCodeunitOf
Type
statement
Summary
Deletes the first codeunit in Target.
Syntax
delete the first codeunit of <Target>
Description
Replaces the first codeunit in Target with the empty string.
note
It is an error if Target is the empty string.
Parameters
Name | Type | Description |
---|---|---|
Target | A string container. |
Examples
variable tVar as String
put "seven" into tVar
delete the first codeunit of tVar -- tVar contains "even"