TeleFlow BasicScript Left
From TeleFlow
(Difference between revisions)
Wikilib (Talk | contribs)
(New page: Returns a specified number of leftmost characters in a string.<br> <br> ===Syntax=== :LEFT(string,number)<br> <br> :<b>string:</b> a string value or variable.<br> :<b>number:</b> the numbe...)
Next diff →
Revision as of 00:28, 20 May 2008
Returns a specified number of leftmost characters in a string.
Syntax
- LEFT(string,number)
- string: a string value or variable.
- number: the number of leftmost characters to return from string.
Related Steps
Examples
BasicScript code Result @A = "Hello world" Hello @B = LEFT(@A,5) PRINT "@B"
