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

From SoftMC-Wiki
Jump to: navigation, search
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:RTRIM$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 13: Line 14:
  
 
|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
  
Line 30: Line 31:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
Read-Only
+
Read only
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 37: Line 38:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:LTRIM$|LTRIM$]]
+
* [[MC-Basic:LTRIM$|LTRIM$]]
  
[[Category:Axystems:MC-Basic:String_Manipulation|RTRIM$]]
+
[[Category:MC-Basic:String Manipulation|RTRIM$]]
 
}}
 
}}

Latest revision as of 07:37, 27 April 2017

Language: English  • 中文(简体)‎

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