![]() |
Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.
|
NAME
strLeft - returns characters from the beginning of a string
SYNOPSIS
strLeft [STRING] [LENGTH]
EXAMPLES
strLeft abcdefg 3 (returns: "abc")
strLeft This is a string 6 (returns: "This i")
DESCRIPTION
This command requires two parameters, a string and an integer. It will chop off
and return the beginning of the string the length of the integer.
Do not surround the string with quotes. The integer must come after a space
at the end of the string.
AUTHOR
Allen Ormond <aormond (at) fromrocks (dot) com>