TrimLeft

Top  Previous  Next

Prototype

 

StrOutput:=TrimLeft(strInput)

 

Description

 

Returns the same shown string even if with no beginning spaces, if present.

 

Parameters

 

StrInput: input string.

 

Returned value

 

StrOutput:  output string.

 

Notes

 

None.

 

Example

 

Example

 

// Initialize a value

StringValue:=' 10   ';

 

// Delete left spaces from the string: the result is '10   '

TrimmedValue:=TrimLeft(StringValue);