Rtrim: Difference between revisions
Jump to navigation
Jump to search
| Line 14: | Line 14: | ||
Print "(" & Spacey & ")" | Print "(" & Spacey & ")" | ||
Print "(" & RTrim(Spacey) & ")" | Print "(" & RTrim(Spacey) & ")" | ||
</pre> | |||
== 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 + ")" + "<br>"); | |||
NSB.Print("(" + Spacey.rtrim() + ")" + "<br>"); | |||
</pre> | </pre> | ||
Revision as of 21:33, 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 + ")" + "<br>");
NSB.Print("(" + Spacey.rtrim() + ")" + "<br>");
Output
(K ) (K)