RIGHT Operation

How to use the RIGHT operation with Computed Attributes

Definition


The RIGHT operation allows you to extract a substring from a string, starting from the right most character.

Example

$LABEL = Pineapple

RIGHT($LABEL,5)

Result:
apple

Syntax Guide


RIGHT(text_attribute,num_chars)

text_attribute - The text attribute from which to extract characters

num_chars [optional] - The number of characters to extract starting from the RIGHT side of the text. Default = 1 if left blank.