| |
AnsiToOem | Converts an ANSI string (Windows) to an OEM string (DOS). |
AnsiToUnicode | Converts:- an ANSI string (Windows) to a UNICODE string.
- a buffer containing an ANSI string (Windows) to a buffer containing a UNICODE string.
|
Asc | Returns the ASCII code of the specified character. |
BufferToHexa | Converts a buffer to a hexadecimal string (for example: "4A 5B 00"). |
BufferToInteger | Extracts an integer from a binary buffer at a given position. |
BufferToPhrase | Extrait une phrase présente dans un buffer. |
BufferToReal | Extracts a real from a binary buffer at a given position. |
Charact | Returns the character corresponding to the specified ASCII code. |
CharactType | Returns information about the type of character. |
CharactTypeCount | Returns the number of characters matching a given type. |
CharactUnicode | Returns the character corresponding to the specified Unicode code. |
CommonLength | Returns the number of characters common to two characters strings (from the beginning or from the end). |
Complete | Returns a character string of a specified length. |
CompleteDir | Adds a backslash to the end of a string, if necessary. |
Contains | Allows you to check if a substring is within a string. |
ExtractLine | Extracts a specific line from a character string. |
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.
|
ExtractStringBetween | Allows you to:- extract a substring between two given separators from a character string.
- search for substrings between two given separators in a character string.
|
HexaToBuffer | Converts a string with hexadecimal bytes to a binary buffer. |
HexaToInt | Returns the numeric value of a hexadecimal string. |
HTMLToRTF | Converts an HTML string or an HTML buffer to an RTF string. |
HTMLToText | Converts an HTML string or buffer to text. |
IntToHexa | Returns the hexadecimal string of a numeric value. |
JSONToString | Converts the content of a JSON variable to a JSON string. |
JSONToVariant | Converts a JSON string to a Variant variable. |
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.
|
LengthToString | Converts a length expressed in bytes into a character string formatted in kilobytes, megabytes or terabytes. |
LineToPosition | Returns the position of the first character of a line in a block of text. |
Lower | Converts all characters in a string to lowercase according to the region settings defined in Windows. |
MatchRegularExpression | Checks whether a character string corresponds to a specific format and retrieves the different substrings that constitute the format. |
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. |
NoCharacter | Returns a character string without the specified characters found on the left and on the right. |
NoLeftCharacter | Returns a character string without the specified characters found on the left of the initial string. |
NoRightCharacter | Returns a character string without the specified characters found on the right of the initial string. |
NoSpace | Returns a character string without the space characters: - found on the right and on the left.
- found inside the string.
|
NumberInWords | Converts a number to words. |
NumToFinancialWritingChinese | Transforms a numeric value (integer, real or currency) into a character string in the Chinese financial writing format. |
NumToString | Converts a numeric value (integer, real or currency) to a string according to a specified format. |
OemToAnsi | Converts a character string in OEM format (DOS) into a character string in ANSI format (Windows). |
Phonetic | Returns the phonetics corresponding to the string passed in parameter. |
PhraseToBuffer | Convertit un texte en buffer. |
Position | Finds the position of a character string inside another character string. |
PositionOccurrence | Finds the Xth position of a character string in a character string. |
PositionToLine | Returns the number of the line to which belongs a character identified by its position in a block of text. |
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. |
Right | Extracts the right part (i.e., the last characters) from a string or buffer. |
StringBuild | Builds a character string from an initial string and parameters. |
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.
|
StringDelete | Deletes: - all the occurrences of a substring within a string.
- part of a string within another string. The part of the string to remove is identified by its position and length.
|
StringEndsWith | Checks whether a character string ends: - with a specific character string.
- with one of the character strings in an array.
|
StringFormat | Formats a character string according to the selected options. |
StringIncrement | Increments a number at the beginning or at the end of a string. |
StringInsert | Inserts a string into another character string at a given position. |
StringRetrieve | Retrieves a character string in a format external to PC Soft (character string that is the result of a Windows API for example). |
StringReverse | Reverses the characters of a string. |
StringSplit | Extracts all the substrings from a character string based on one or more string separators. |
StringStartsWith | Checks whether a character string starts: - with a specific character string.
- with one of the character strings in an array.
|
StringToJSON | Converts a JSON string into a JSON variable. |
StringToUTF8 | Converts an ANSI or UNICODE string to UTF-8. |
SystemIntegerToInteger | Converts a system integer to a 4-byte integer. |
TextToHTML | Converts a text string into an HTML string (the CR characters are replaced by <BR>, the accented characters are replaced by their equivalent in HTML, ...). |
TextToRTF | Converts a text string into a string in RTF format. |
Truncate | Truncates the right part of a string or buffer. |
UncompleteDir | Removes the '/' or '\' characters from the end of a string, if necessary. |
UnicodeToAnsi | Converts:- a character string in UNICODE format into a character string in ANSI format (Windows).
- a buffer containing a character string in UNICODE format into a buffer containing a character string in ANSI format (Windows).
|
Upper | Converts all characters in a string to uppercase according to the region settings defined in Windows. |
URLDecode | Decodes an encoded URL (which means with characters in %xx format). |
URLEncode | Encodes a URL with a sub-set of ASCII characters. |
URLExtractPath | Returns the different elements of a URL: protocol, user, password, domain, port, resource path, resource name, resource extension, request and fragment. |
UTF8ToAnsi | Converts a string in UTF8 format into a string in Ansi format. |
UTF8ToString | Converts a string in UTF8 format into a string in ANSI or UNICODE format. |
UTF8ToUnicode | Converts a string in UTF8 format into a Unicode string. |
Val | Returns the numeric value of a character string. |
VariantToJSON | Converts the content of a Variant variable to JSON format. |
WordCount | Returns the number of words in a string. |
WordToArray | Fills an array with the words from a string. |