Product: LABEL MATRIX
Version: All Versions
|
|
StrAfter(data,start after, length): This function results in a string that is exactly length characters long after a specified start after character.
|
Expression |
Result |
|
StrAfter("1234-5678", "-"', 3) |
Takes the 3 characters after the dash (567) |
|
StrAfter("1234-5678", "-") |
Takes all characters after the dash (5678) |
|
|
