TrimLeftSpaces function

Top  Previous  Next

Returns a copy of the input string without the leading spaces.

 

Short form: "ltrim".

 

Syntax

 

value = TrimLeftSpaces( inputString )

 

Parameters

inputString

 

the string being trimmed

 

 

 

returns

 

the trimmed string

 

Examples

The following examples illustrate the use of the TrimLeftSpaces  function:

 

value = TrimLeftSpaces( "   Hello" )    ' Returns "Hello"