[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
|
Add characters to the left of a string till a certain length |
|
|
Add chars at the end of a string till it reaches a certain length |
|
|
Checks whether a string contains a given substring |
|
|
Check whether a string contains a certain substring, ignoring case. |
|
|
Check whether a string ends with a certain substring |
|
|
Check whether a string ends with a certain substring, ignoring case. |
|
|
Searches, observing case, for a string in an array of strings. |
|
|
Searches, case insensitive, for a string in an array of strings. |
|
|
Copies a number of characters starting at the left of a string |
|
|
Check whether a string occurs in an array of strings, observing case. |
|
|
Check whether a string occurs in an array of strings, disregarding case. |
|
|
Returns a number of characters copied from a given location in a string |
|
|
Pretty-Print a string: make lowercase and capitalize first letters of words |
|
|
Search and replace all occurrences of a string, case sensitive. |
|
|
Search and replace all occurrences of a string, case insensitive. |
|
|
Check whether 2 strings resemble each other. |
|
|
Reverse the letters in a string. |
|
|
Copies a number of characters starting at the right of a string |
|
|
Check whether a string starts with a given substring, observing case |
|
|
Check whether a string starts with a given substring, ignoring case |
|
|
Convert a binary buffer to a hexadecimal string |
|
|
Returns all characters in a string till the first space character (not included). |
|
|
Deletes and returns all characters in a string till the first space character (not included). |
|
|
Returns all characters in a string till a given character (not included). |
|
|
Deletes and returns all characters in a string till a given character (not included). |
|
|
Convert a decimal number to a string representation, using given a base. |
|
|
Decodes the integer representation of a soundex code and returns the original soundex code. |
|
|
Decodes the word-sized representation of a soundex code and returns the original soundex code. |
|
|
Delete all occurrences of a given character from a string. |
|
|
Delete all occurrences of a space from a string. |
|
|
Reduces sequences of space characters to 1 space character. |
|
|
Creates and concatenates N copies of a string |
|
|
Extract the N-th delimited part from a string. |
|
|
Extract a word from a string, starting at a given position in the string. |
|
|
Extract the N-th word out of a string. |
|
|
Extract a word from a string, and return the position where it was located in the string. |
|
|
Find case-sensitive matches of a string using a Boyer-Moore algorithm |
|
|
Find case-sensitive matches of a string using a Boyer-Moore algorithm |
|
|
Search for a substring in a string, using wildcards. |
|
|
Returns the command-line argument following the given switch. |
|
|
Converts a hexadecimal string to a decimal value |
|
|
Convert a hexadecimal string to a binary buffer |
|
|
Returns one of two strings, depending on a boolean expression |
|
|
Searches, observing case, for a string in an array of strings. |
|
|
Converts an integer to a binary string representation, inserting spaces at fixed locations. |
|
|
Represent an integer with roman numerals |
|
|
Check whether a string is empty, disregaring whitespace characters |
|
|
Check whether a string matches a wildcard search expression. |
|
|
Check for the presence of a word in a string. |
|
|
Copies Count characters starting at the left of a string. |
|
|
Copies Count characters starting at the left of a string. |
|
|
Check whether a string occurs in an array of strings, observing case. |
|
|
Copies a number of characters starting at a given position in a string. |
|
|
Copies a number of characters starting at a given position in a string. |
|
|
Compare using natural sort |
|
|
Returns the position of the N-th occurrence of a substring in a string. |
|
|
Converts a string representation of a number to its numerical value, given a certain base. |
|
|
Insert thousand separators. |
|
|
Pad the string to a certain length, so the string is centered. |
|
|
Add spaces to the left of a string till a certain length is reached. |
|
|
Add spaces to the right of a string till a certain length is reached. |
|
|
Search for the occurrence of a character in a string, starting at a certain position. |
|
|
Return the position in a string of any character out of a set of characters |
|
|
Return the position in a string of any character out of a set of characters, starting at a certain position |
|
|
Choose a random string from an array of strings. |
|
|
Remove any leading characters in a set from a string |
|
|
Remove any trailing or leading characters in a set from a string |
|
|
Remove any trailing characters in a set from a string |
|
|
Replace strings case-sensitively |
|
|
Replace strings case-insensitively |
|
|
Reverse characters in a string |
|
|
Copy a given number of characters (bytes), counting from the right of a string. |
|
|
Copy a given number of characters, counting from the right of a string. |
|
|
Convert a string with a Roman number to it's decimal value. |
|
|
Convert a roman numeral to an integer value |
|
|
Find last occurrence of substring or character in a string |
|
|
Find last occurrence substring or character in a string, starting at a certain position |
|
|
Search a buffer for a certain string. |
|
|
Compute the soundex of a string |
|
|
Compare soundex values of 2 strings. |
|
|
Soundex value as an integer. |
|
|
Default AnsiResemblesText implementation. |
|
|
Check whether 2 strings have equal soundex values |
|
|
Calculate a word-sized soundex value |
|
|
Optimized search-and-replace algorithm |
|
|
Replace occurrences of a set of strings to another set of strings |
|
|
Replace part of a string with another string. |
|
|
Convert tab characters to a number of spaces |
|
|
Remove any leading characters in a set from a string and returns the result |
|
|
Remove any trailing characters in a set from a string and returns the result |
|
|
Remove any leading or trailing characters in a set from a string and returns the result |
|
|
Try to convert a roman numeral to an integer value. |
|
|
Count the number of words in a string. |
|
|
Search position of Nth word in a string. |
|
|
Decode a string encoded with XorEncode |
|
|
Encode a string by XOR-ing its characters using characters of a given key, representing the result as hex values. |
|
|
Encode a string by XOR-ing its characters using characters of a given key. |