MC-Basic:RTRIM$

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

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