TeleFlow BasicScript Trim
From TeleFlow
(Difference between revisions)
Wikilib (Talk | contribs)
(New page: Trims space characters from both ends of a string.<br> <br> ===Syntax=== :TRIM(<b><i>string</i></b>)<br> :<b>string:</b> a string value or variable.<br> <br> ===Related Steps=== [[Image:Iv...)
Next diff →
Current revision
Trims space characters from both ends of a string.
Syntax
- TRIM(string)
- string: a string value or variable.
Related Steps
Examples
BasicScript code Result @A = " HELLO WORLD " HELLO WORLD @B = TRIM(@A) HELLO WORLD PRINT "@A" PRINT "@B"
