<-- Previous || Up || Next -->

Shift String Right Function
String Manipulations Class

Public Function ShiftStringRight( _
      ByVal vValue As Variant _
    , Optional ByVal vPositions As Variant _
    ) As Variant

Shifts the characters within a string to the right by vPositions.
Same as removing the last vPositions characters from vValue.

Example:
    ShiftStringRight("123456789", 3) = "123456"
See also:
    ShiftStringLeft Function
    RotateStringRight Function
    StripRightNCharacters Function
    StringShiftRight Function
vValue: The string whose characters are to be shifted to the right. Function returns Null if vValue is Null or cannot be fixed up to a String.

vPositions: The number of positions that each character is to be shifted. vPositions defaults to 1 (one) if it is missing or Null or cannot be fixed up to a number.

vPositions can be negative in which case the string is shifted to the left.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.