Skip to main content

DeleteFirstCharOf

Type

statement

Summary

Deletes the first char in Target.

Syntax

delete the first char of <Target>

Description

Replaces the first char 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 char of tVar -- tVar contains "even"
Thank you for your feedback!

Was this page helpful?