Difference between revisions of "MC-Basic:LTRIM$"
m (1 revision) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 13: | Line 13: | ||
|TYPE= | |TYPE= | ||
− | '' | + | <''return value''>: String<br> |
''<string>'': String | ''<string>'': String | ||
|RANGE= | |RANGE= | ||
− | '' | + | <''return value''>: String<br> |
''<string>'': String | ''<string>'': String | ||
Line 30: | Line 30: | ||
|LIMITATIONS= | |LIMITATIONS= | ||
− | Read | + | Read only |
|EXAMPLE= | |EXAMPLE= | ||
Line 37: | Line 37: | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:RTRIM$|RTRIM$]] |
− | |||
+ | [[Category:MC-Basic:String Manipulation|LTRIM$]] | ||
}} | }} |
Latest revision as of 09:17, 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