| |
Complete | Returns a character string of a specified length. |
CompleteDir | Adds a backslash to the end of a string, if necessary. |
ExtractString | Allows you to:- extract a substring from a string based on a specified string separator.
- search for substrings in a string based on a specified string separator.
|
Versions 09 and laterLeft New in version 09Left Left | Extracts the left part (i.e., the first characters) from a string or buffer. |
Length | Returns:- the size of a character string, which means the number of characters found in the character string (including the space and binary 0 characters).
- the size of a buffer, which means the number of bytes found in the buffer.
|
Middle | Extracts: - a substring from a string starting at a specified position.
- part of a buffer starting at a specified position.
|
NoAccent | Transforms the accented characters found in a character string into non-accented characters. |
NoSpace | Returns a character string without the space characters: - found on the right and on the left.
- found inside the string.
|
Position | Finds the position of a specified string within another string. |
PositionOccurrence | Finds the Xth position of a string within another string. |
RepeatString | Concatenates N repetitions of the same character string or buffer. |
Replace | Replaces all the occurrences of a word found in a string by another word. |
Reverse | Returns the character that corresponds to the difference between the ASCII code of a specific character in a string and 255. |
Versions 09 and laterRight Right | Extracts the right part (i.e., the last characters) from a string or buffer. |
StringCompare | Compares two strings character by character:- according to the sequence of ASCII characters.
- according to the alphabetical order.
|
StringCount | Calculates: - the number of occurrences of a specific character string (by respecting the search criteria) in another character string.
- the number of occurrences of a set of strings in an array.
|
StringFormat | Formats a character string according to the selected options. |
TypeVar | Identifies the type of an expression, a variable (during a call to a procedure for example) or a control. |
Versions 09 and laterVal New in version 09Val Val | Returns the numeric value of a character string. |