Difference between revisions of "MC-Basic:LTRIM$"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:LTRIM$ to MC-Basic:LTRIM$: Global renaming of Axystems: namespace into (Main):)
Line 37: Line 37:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:RTRIM$|RTRIM$]]
+
* [[MC-Basic:RTRIM$|RTRIM$]]
  
 
[[Category:Axystems:MC-Basic:String_Manipulation|LTRIM$]]
 
[[Category:Axystems:MC-Basic:String_Manipulation|LTRIM$]]
 
}}
 
}}

Revision as of 08:40, 22 May 2014

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