Product: LABEL MATRIX
Version: All Versions
|
Left(data, length, padwith): This expression results in a string that is exactly length characters long. These characters come from the left-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 right side of the result. The default padwith character is the space.
Expression |
Result |
Left("STW123", 3) |
STW |
Left("1234", 8, "0") |
12340000 |
|