Product: LABEL MATRIX
Version: All Versions
|
Right(data, length, padwith): This function results in a string that is exactly length characters long. These characters come from the right-most characters of the data string.
If the data string is shorter than length characters, the necessary number of padwith characters is added to the left side of the result. The default padwith character is the space.
Expression | Result |
Right("STW123", 3) | 123 |
|