Returns a character string from the given character expression or memo field, starting at a specified position in the character expression or memo field and continuing for a specified number of characters.
SUBSTR(cExpression, nStartPosition [, nCharactersReturned]) |
Parameters
- cExpression
- Specifies the character expression or memo field from which the character string is returned.
- nStartPosition
-
Specifies the position in the character expression or memo field cExpression from where the character string is returned. The first character of cExpression is position 1.
Note: If nStartPosition is greater than the number of characters in cExpression, SUBSTR(В )returns an empty string ("").
- nCharactersReturned
- Specifies the number of characters to return from cExpression. If you omit nCharactersReturned, characters are returned until the end of the character expression is reached.
Return Value
Character. SUBSTR(В ) returns a character string.
Note: |
---|
SUBSTR(В ) will not return a value for a memo field when issued in the Debug window. To return a value in the Debug window, place the memo field name within ALLTRIM(В ), and place ALLTRIM(В ) within SUBSTR(В ). |
Remarks
When using SUBSTR(В ) with memo fields in a SQL SELECT command, include the PADR(В ) function in SUBSTR(В ) so that empty or variable length memo fields produce consistent results when converted to character strings.
Example
The following example stores string 'abcdefghijklm' to the variable myString using the STORE command. CLEAR clears the main Visual FoxPro window. Beginning with the first character as specified by nStartPosition = 1, SUBSTR( ) displays the string 'abcde' with five characters as specified by nCharactersReturned = 5. SUBSTR( ) then displays the string 'fghijklm' beginning with the sixth character in the string as specified by nStartPosition = 6 until the end of the character expression is reached as specified by the omission of a value for nCharactersReturned.
В | Copy Code |
---|---|
STORE 'abcdefghijklm' TO myString CLEAR ? SUBSTR(myString, 1, 5) ? SUBSTR(myString, 6) |
See Also
Other Resources
AT(В ) FunctionAT_C(В ) Function
ATC(В ) Function
ATCC(В ) Function
ATCLINE( ) Function
ATLINE(В ) Function
LEFT( ) Function
PADL( ) | PADR( ) | PADC( ) Functions
RAT( ) Function
RATLINE( ) Function
RIGHT( ) Function
LEFTC(В ) Function
RIGHTC(В ) Function
SUBSTRC( ) Function
STREXTRACT( ) Function
STRTRAN(В ) Function
STUFF( ) Function
Functions
Language Reference