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
stringColumnColumnThe string column to search within.
findValuestringThe substring to find.
replaceValuestringThe 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
stringColumnColumnThe string column to search within.
findColumnColumnThe column containing the substring to find.
replaceColumnColumnThe 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
stringExpressionExpressionThe string expression to search within.
findValuestringThe substring to find.
replaceValuestringThe replacement string.
Replace(IElement, IElement, IElement)
Initializes a new instance of REPLACE with generic elements.
public Replace(IElement stringElement, IElement findElement, IElement replaceElement)