DeleteFirstCharOf

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
delete the first char of <Target>
Associationscom.livecode.char
Summary

Deletes the first char in Target.

Parameters
NameTypeDescription
Target

A string container.

Example
variable tVar as String
put "seven" into tVar
delete the first char of tVar -- tVar contains "even"
Description

Replaces the first char in Target with the empty string.

Note: It is an error if Target is the empty string.

Tagsstrings