DOCERR: RAT() Command Doesn't Count from Rightmost CharacterLast reviewed: November 12, 1995Article ID: Q139095 |
The information in this article applies to:
SUMMARYThe RAT() Command is described as follows in the Language Reference:
Returns the beginning numeric position of the first occurrence of one character expression or memo field within another character expression or memo field, counting from the rightmost character.This is misleading.
MORE INFORMATIONThis description leads you to believe that the number being returned is the character position counted from the right and moving left. This is an incorrect assumption. The number returned is the character position counting from the left and moving right but the RAT() Command starts its search from the right and moves left which is the opposite of the AT() Command. For example:
Store 'abracadabr' to string ?RAT('a',string) && Returns 8, not 3 ?RAT('a',string,3) && Returns 4, not 7 |
Additional reference words: 3.00 VFoxWin FoxWin FoxDos FoxMac FoxUnix 2.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |