RAD function: strtrml

A RAD function that removes all leading blanks from a string.

Function

strtrml

Format

$L.void=strtrml($string)

Parameters

The following parameters are valid for the strtrml function:

Parameter Data type Description
$L.void= Not applicable. A syntax requirement only. It does not affect the outcome of the function.
$string String The string being modified.

Note This RAD function is not available as a JavaScript system.functions call.

Example

$string="Hewlett-Packard"
$L.void=strtrml($string)

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