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

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "Read-Only" to "Read only")
m (Text replace - "''<return value>''" to "<''return value''>")
Line 13: Line 13:
  
 
|TYPE=
 
|TYPE=
''<return value>'': String<br>
+
<''return value''>: String<br>
 
''<string>'': String
 
''<string>'': String
  
 
|RANGE=
 
|RANGE=
''<return value>'': String<br>
+
<''return value''>: String<br>
 
''<string>'': String
 
''<string>'': String
  

Revision as of 09:37, 20 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