RAD function: strclpl

A RAD function that removes a number of characters from the beginning of a string.

Function

strclpl

Format

$L.void=strclpl($string, $number)

Parameters

The following parameters are valid for the strclpl function:

Parameter Data type Description
$L.void= Not applicable. A syntax requirement only, does not affect the outcome of the function.
$string String The string being modified.
$number Number The number of characters to remove.

Example

$string="Hewlett-Packard"
$number=6
$L.void=strclpl($string, $number)

After execution, the value of $string is t-Packard.