Skip to main content

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

NameTypeDescription

Target

A string container.

Examples

variable tVar as String
put "seven" into tVar
delete the first codeunit of tVar -- tVar contains "even"
Thank you for your feedback!

Was this page helpful?