Trim: Difference between revisions
Jump to navigation
Jump to search
Add javascript snippet |
|||
Line 40: | Line 40: | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:BASIC Functions]] |
Latest revision as of 15:37, 25 March 2019
Trim(string)
Description
Trim returns a string with all leading and trailing spaces removed. The required parameter, string, is any valid string expression.
Example (Basic)
Rem Trim Example 'Trim trims leading and trailing spaces Dim Spacey Spacey = " K " Print "(" & Spacey & ")" Print "(" & Trim(Spacey) & ")"
Example (Basic)
// Trim Example /* Trim trims leading and trailing spaces */ var Spacey; Spacey = " K "; NSB.Print("(" + Spacey + ")"); NSB.Print("(" + Spacey.trim() + ")");
Output
( K ) (K)