De la ayuda de notes.
Searches a string from left to right and returns the leftmost characters of the string.
Syntax
@Left( stringToSearch ; numberOfChars )
@Left( stringToSearch ; subString )
Parameters
stringToSearch
Text. The string where you want to find the leftmost characters.
numberOfChars
Number. The number of characters to return. If the number is 2, the first two characters of the string are returned; if the number is 5, the first five characters are returned, and so on. If the number is negative, the entire string is returned.
subString
Text. A substring of stringToSearch. @Left returns the characters to the left of subString. It finds subString by searching stringToSearch from left to right.
Return value
resultString
Text. The leftmost characters in stringToSearch. The number of characters returned is determined by either numberOfChars or subString. @Left returns "" if subString is not found in stringToSearch.
Language cross-reference
Left function of LotusScript language
StrLeft function of LotusScript language
Example
See Also
Saludos.