[]
        
(Showing Draft Content)

C1.CalcEngine.ExpressionEngine.TextFunctions

TextFunctions Class

Represents text functions.

Inheritance
TextFunctions
Namespace: C1.CalcEngine.ExpressionEngine
Assembly: C1.CalcEngine.dll
Syntax
public static class TextFunctions

Methods

Name Description
Asc(List<IExpression>)

Returns the absolute value of a number.

Chr(List<IExpression>)

Converts an int ASCII code to a character.

Concat(List<IExpression>)

Returns a string that is the result of concatenating two or more string values.

Contains(List<IExpression>)

Returns a value indicating whether a specified substring occurs within this string.

EndsWith(List<IExpression>)

Determines whether the end of this string instance matches a specified string.

InStr(List<IExpression>)

Searches an expression for another expression and returns its starting position if found.

Insert(List<IExpression>)

Returns a new string in which a specified string is inserted at a specified index position in this instance.

LCase(List<IExpression>)

Returns a character expression after converting uppercase character data to lowercase.

LSet(List<IExpression>)

Returns a new string of a specified length in which the beginning of the current string is padded with spaces.

Len(List<IExpression>)

Returns the number of characters of the specified string expression.

Mid(List<IExpression>)

Returns a string that contains all the characters starting from a specified position in a string.

RSet(List<IExpression>)

Returns a new string of a specified length in which the end of the current string is padded with spaces.

Remove(List<IExpression>)

Deletes all specified characters specified string.

Replace(List<IExpression>)

Replaces all occurrences of a specified string value with another string value.

StartsWith(List<IExpression>)

Determines whether the beginning of this string instance matches a specified string.

StrReverse(List<IExpression>)

Returns the reverse order of a string value.

Trim(List<IExpression>)

Removes the space character char(32) or other specified characters from the start or end of a string.

UCase(List<IExpression>)

Returns a character expression with lowercase character data converted to uppercase.