To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
trim$ EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
trim$ Example
10 Test$=TRIM$("hello ") !Trim off the extra spaces.
20 PRINT "'";Test$;"' is of length";LEN(Test$)
30 END