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

From SoftMC-Wiki
Jump to: navigation, search
m (1 revision)
Line 39: Line 39:
 
* [[Axystems:MC-Basic:LTRIM$|LTRIM$]]
 
* [[Axystems:MC-Basic:LTRIM$|LTRIM$]]
  
 
+
[[Category:Axystems:MC-Basic:String_Manipulation|RTRIM$]]
 
}}
 
}}

Revision as of 14:57, 6 March 2014

RTRIM$ returns the left-hand part of a string after removing any blank spaces at the end.

Syntax

RTRIM$(<string>)

Availability

All versions

Type

<return value>: String
<string>: String

Range

<return value>: String
<string>: String

Scope

Configuration, Task or Terminal

Limitations

Read-Only

Examples

-->PRINT RTRIM$(“a left-justified string      ”);”next”
 a left-justified stringnext

See Also