Rtrim: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
RTRIM(''string'')
RTrim(''string'')


'''Description'''
== Description ==


RTRIM returns string with all trailing spaces removed. The required parameter, ''string'', is any valid string expression.
RTrim returns string with all trailing spaces removed. The required parameter, ''string'', is any valid string expression.


'''Example'''
== Example ==


<pre>
<pre>
REM RTRIM Example
Rem RTrim Example
'RTRIM trims all trailing spaces
'RTrim trims all trailing spaces
DIM Spacey
Dim Spacey
Spacey = "K "
Spacey = "K "
PRINT "(" & Spacey & ")"
Print "(" & Spacey & ")"
PRINT "(" & RTRIM(Spacey) & ")"
Print "(" & RTrim(Spacey) & ")"
</pre>
</pre>


'''Output'''
== Example (JavaScript) ==
<pre>
// RTrim Example
/* RTrim trims all trailing spaces */
 
String.prototype.rtrim = function() {
return this.replace(/\s+$/,"");
}
 
var Spacey;
Spacey = "K ";
NSB.Print("(" + Spacey + ")");
NSB.Print("(" + Spacey.rtrim() + ")");
</pre>
 
== Output ==


<pre>
<pre>
Line 23: Line 38:
</pre>
</pre>


'''Related Items'''
== Related Items ==
 
[[ltrim|LTrim]], [[trim|Trim]]
 
[[Category:Language Reference]]


[[ltrim|LTRIM]], [[trim|TRIM]]
[[Category:Strings]]

Revision as of 21:34, 19 May 2013

RTrim(string)

Description

RTrim returns string with all trailing spaces removed. The required parameter, string, is any valid string expression.

Example

Rem RTrim Example
'RTrim trims all trailing spaces
Dim Spacey
Spacey = "K "
Print "(" & Spacey & ")"
Print "(" & RTrim(Spacey) & ")"

Example (JavaScript)

// RTrim Example
/* RTrim trims all trailing spaces */

String.prototype.rtrim = function() {
	return this.replace(/\s+$/,"");
}

var Spacey;
Spacey = "K ";
NSB.Print("(" + Spacey + ")");
NSB.Print("(" + Spacey.rtrim() + ")");

Output

(K )
(K)

Related Items

LTrim, Trim