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
Name | Type | Description |
---|---|---|
Target | A string container. |
Examples
variable tVar as String
put "seven" into tVar
delete the first char of tVar -- tVar contains "even"