Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

LTRIM$

Removes the leading blank characters from a string expression.

Syntax

LTRIM$(string_expression)

Comments

string_expression is any string expression.

Example

PRINT LTRIM$("      Trim test")

Results in:

Trim test

See Also