TeleFlow BasicScript Trim

TeleFlow BasicScript Trim

From TeleFlow

(Difference between revisions)
Jump to: navigation, search

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

Image:Iv_517.gif BasicScript

Examples

BasicScript code      Result
@A = "  HELLO WORLD  "       HELLO WORLD
@B = TRIM(@A) HELLO WORLD
PRINT "@A"
PRINT "@B"