StrLeft

Copies the first characters of a larger string.

Function Group Execution Windows Embedded Thin Client Mobile Access
StrLeft String Synchronous Supported Supported Supported Supported

Syntax

  StrLeft( strSource, numQtdChar )  
strSource
The source string.
numQtdChar
The number of characters to be copied.

Returned value

Returns a string containing the left-most characters in the source string.

Examples

Tag Name Expression
Tag StrLeft( “Studio version 7.0″, 8 ) // Returned value = Studio v
Tag StrLeft ( “Technical Reference”, 9 ) // Returned value = Technical

StrLeft