Logo

XLeratorDB/String Functions Documentation

FUNCTION REFERENCE - String Functions FUNCTIONS

Formatting
CLEAN

Remove the first 32 nonprinting characters in the 7-bit ASCII code (values 0 through 31) from text.

Read more
CONCAT

Concatenate the contents of 2 columns.

Read more
CRLF

Insert a Carriage Return Char(13) and a Line Feed Char(10) into a string.

Read more
DEC2FRAC

Convert a number into its fractional representation.

Read more
DOLLAR

Convert a number to text using currency format, with the decimals rounded to the specified place.

Read more
FIXED

Format a number in decimal format using a period and commas, round the number to the specified number of decimals, and return the result as text.

Read more
FORMATDATE

Convert a datetime value to text and specify the display formatting by using special format strings.

Read more
FORMATNUM

Convert a numeric value to text and specify the display formatting by using special format strings.

Read more
FRAC2DEC

Convert a fraction, as text, to a numeric value.

Read more
INDENT

Place characters at the beginning of a string of text.

Read more
JOINSTR

Concatenate the text from multiple rows in a table.

Read more
JOINSTR_q

Concatenate the text from multiple rows in a table.

Read more
PADLEFT

Place characters at the beginning of a string of text, when the length of the text is less than the specified width.

Read more
PADRIGHT

Place characters at the end of a string of text, when the length of the text is less than the specified width.

Read more
PARSE

Find a word in a delimited string based on its position in the string.

Read more
PCT2FRAC

Convert a percentage into its fractional representation.

Read more
PROPER

Capitalize the first letter in each word of a string of text.

Read more
QUOTED

Add quotation marks, CHAR(34), to the beginning and end of a string of text.

Read more
QUOTES

Add quotation marks, CHAR(39), to the beginning and end of a string of text.

Read more
SPLIT

Generate a single column table containing the substrings between the specified delimiter passed to the function.

Read more
STRIP

Remove punctuation from the beginning and end of a string.

Read more
SUBSTITUTE

Substitute new_text for old_text in a text string.

Read more
TEXT

Convert a numeric value to text and specify the display formatting by using special format strings.

Read more
TRIM

Remove trailing and leading spaces from a string of text.

Read more
VALUE

Convert a text string that represents a number to a number.

Read more
Inspection
CONTAINSSTR

Determine if a string contains a particular value.

Read more
COUNTSTRING

Count the number of times a particular text occurs in another text.

Read more
ENDSWITH

Determine if a string ends with a particular value.

Read more
EXACT

Compare two text strings.

Read more
FIND

Locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.

Read more
INSTR

Return an integer specifying the position of the first occurrence of one string within another.

Read more
INSTRREV

Return an integer specifying the position of an occurrence of one string within another, from the end of string.

Read more
ISALPHA

Determine if a value contains only alphabetic characters [a-z][A-Z].

Read more
ISNUMERIC

Determine if a value is numeric.

Read more
NUMWORDS

Calculate the number of words in a string.

Read more
STARTSWITH

Determine if a string starts with a particular value.

Read more
Logic
IIFSTR

Return one of two values, depending on the evaluation of an expression.

Read more
Calendar
NETWORKDAYS

Calculate the number of working days between two dates (inclusive)

Read more
NETWORKDAYS_q

Calculate the number of whole working days between a start date and an end date.

Read more
WORKDAY

Calculate the date that is the indicated number of working days before or after a date (the starting date).

Read more
WORKDAY_q

Calculate the date that is the indicated number of working days before or after a date (the starting date).

Read more