MC-Basic:LTRIM$

From SoftMC-Wiki
Revision as of 16:00, 13 December 2010 by Arwiebe (talk | contribs) (Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= LTRIM$(''<string>'') |AVAILABILITY= All versions |DESCRIPTION= The LTRIM$ function returns the right-hand part of a string after removing any…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The LTRIM$ function returns the right-hand part of a string after removing any blank spaces at the beginning.

Syntax

LTRIM$(<string>)

Availability

All versions

Type

<return value>: String
<string>: String

Range

<return value>: String
<string>: String

Scope

Configuration, Task, Terminal

Limitations

Read-Only

Examples

-->PRINT “first”;LTRIM$ (“           a left-justified string “)
 firsta left-justified string

See Also