Table of Contents

Constructor Replace

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

Replace(Column, string, string)

Initializes a new instance of REPLACE with literal search and replacement values.

public Replace(Column stringColumn, string findValue, string replaceValue)

Parameters

stringColumn Column

The string column to search within.

findValue string

The substring to find.

replaceValue string

The replacement string.

Replace(Column, Column, Column)

Initializes a new instance of REPLACE with column-based search and replacement values.

public Replace(Column stringColumn, Column findColumn, Column replaceColumn)

Parameters

stringColumn Column

The string column to search within.

findColumn Column

The column containing the substring to find.

replaceColumn Column

The column containing the replacement string.

Replace(Expression, string, string)

Initializes a new instance of REPLACE for a string expression with literal values.

public Replace(Expression stringExpression, string findValue, string replaceValue)

Parameters

stringExpression Expression

The string expression to search within.

findValue string

The substring to find.

replaceValue string

The replacement string.

Replace(IElement, IElement, IElement)

Initializes a new instance of REPLACE with generic elements.

public Replace(IElement stringElement, IElement findElement, IElement replaceElement)

Parameters

stringElement IElement

The string element to search within.

findElement IElement

The element containing the substring to find.

replaceElement IElement

The element containing the replacement string.