Purpose:
Reduces a string from the left so that only the number of characters set under Number remain. If the original string is already small enough, it is not affected.
Parameter:
String
Number
Boolean (optional) True: The cut off value starts with "..." (Default: False). If Number < 3 the setting is ignored.
Return value:
String
Example:
Right$("normalconsumer", 8) Result: "consumer"
Right$("normalconsumer", 11,.T.) Result: "...consumer"