CitectVBA strings functions are provided to create, edit and implement strings within CitectVBA code. The strings functions predefined in CitectVBA are:
Returns a numeric value that is the ASCII code for the first character in a string. |
|
Converts an ASCII number to a one character string. |
|
Returns the character position of the first occurrence of string2 within string1. |
|
Returns a copy of string in which all characters have been converted to lowercase. |
|
Returns the left most characters of a string parameter. |
|
Determines the number of characters in the stringargument. |
|
Reads a single line from an open sequential file and assigns it to a string variable. |
|
Strips any leading spaces from a string variable. |
|
Returns a substring within a string. |
|
Determines the default string comparison method. |
|
Forces explicit declaration of all variables. |
|
Returns the right most characters of a string parameter. |
|
Strips any trailing spaces from a string variable. |
|
Adds a specified number of spaces in a print statement. |
|
Returns a variant that is the result of the comparison of two strings. |
|
Create a string that consists of one character repeated a specific number of times. |
|
Strips any leading and trailing spaces from Str variable. |
|
Returns a copy of string in which all characters have been converted to uppercase. |