Table of Contents

Constructor Right

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

Right(Column, int)

Initializes a new instance of RIGHT with a literal length.

public Right(Column stringColumn, int length)

Parameters

stringColumn Column

The string column to extract from.

length int

The number of characters to extract from the right.

Right(Column, Column)

Initializes a new instance of RIGHT with a column-based length.

public Right(Column stringColumn, Column lengthColumn)

Parameters

stringColumn Column

The string column to extract from.

lengthColumn Column

The column containing the number of characters to extract.

Right(Expression, int)

Initializes a new instance of RIGHT for a string expression.

public Right(Expression stringExpression, int length)

Parameters

stringExpression Expression

The string expression to extract from.

length int

The number of characters to extract from the right.