Table of Contents

Constructor Left

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

Left(Column, int)

Initializes a new instance of LEFT with a literal length.

public Left(Column stringColumn, int length)

Parameters

stringColumn Column

The string column to extract from.

length int

The number of characters to extract from the left.

Left(Column, Column)

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

public Left(Column stringColumn, Column lengthColumn)

Parameters

stringColumn Column

The string column to extract from.

lengthColumn Column

The column containing the number of characters to extract.

Left(Expression, int)

Initializes a new instance of LEFT for a string expression.

public Left(Expression stringExpression, int length)

Parameters

stringExpression Expression

The string expression to extract from.

length int

The number of characters to extract from the left.