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
stringColumnColumnThe string column to extract from.
lengthintThe 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
stringColumnColumnThe string column to extract from.
lengthColumnColumnThe 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
stringExpressionExpressionThe string expression to extract from.
lengthintThe number of characters to extract from the left.