Automation Engine Script Guide > Ordered by Function > Strings > STR_LTRIM

STR_LTRIM

Script Function: Deletes empty spaces at the beginning of a string

Syntax

STR_LTRIM(String)

Syntax

Description/Format

String

Alphanumeric character string which should be converted
Format: script literal or script variable 


Return code

String without leading empty spaces

Example

The example outputs the result ("Database opening...   ") in the activation protocol.

:SET &RET# = STR_LTRIM("   Database opening...   ")
:
PRINT &RET#

 

See also:

Script element Description

STR_RTRIM

Deletes the empty spaces at the end of string

STR_TRIM

Removes empty spaces at the beginning and the end of a string

Script Elements - Strings

About Scripts
Script Elements - Alphabetical Listing

Script Elements - Ordered by Function