Here are the main functions used in the language for the Asp handling strings.
- UCase (string)
UCase function converts the string to uppercase
- LCase (string)
LCase function converts the string to lowercase
- LTRIM (string)
the LTrim function removes all spaces from the left side of the string
- rtrim (string)
the RTRIM function removes all spaces from the right side of the string
- Trim (string)
Trim function removes all spaces in both right and left of the string
- Space(n)
la funzione Space restituisce una stringa formata da 'n' spazi bianchi
- String(n, carattere)
la funzione String restituisce una stringa composta dal carattere definito nella funzione ripetuto n volte
- Len(string)
la funzione Len restituisce il numero di caratteri della stringa
- Len(variable)
la funzione Len restituisce il numero di byte occupati dalla variabile
- LenB(stringa)
la funzione LenB restituisce il numero di byte necessario per memorizzare la stringa
- StrReverse (string)
StrReverse function returns the string by placing the characters in reverse order
- StrComp (string1, string2, comparetype)
StrComp function compares two strings, the use of the parameter
"comparetype" Sets the comparison between uppercase and lowercase
- Right (string, n)
the Right function returns a substring composed of the first n characters from the right side of the string
- RightB (string, number)
RightB function provides the number of bytes of the string in the first 'n' characters of his lato destro
- Left(stringa, numero)
la funzione Left restituisce una sottostringa composta dagli ultimi 'n' caratteri dal lato sinistro della stringa
- LeftB(stringa, numero)
la funzione LeftB restituisce il numero di byte della stringa a partire dal suo lato sinistro
- Mid(stringa, inizio, lunghezza)
la funzione Mid restituisce una sottostringa della stringa a partire dalla posizione 'inizio' e con una 'lunghezza' prestabilita
- MidB(stringa, inizio, lunghezza)
la funzione MidB restituisce una sottostringa in base al number of bytes instead of number of characters
- InStr (start, string1, string2, comparetype)
the InStr function is used to verify if it is contained in string1 string2; parameter 'start' to start the comparison indicates
- InStrB
InStrB function is similar to the previous one, in this case the information of departure and return value are relative positions in bytes and not characters
- InStrRev (string1, string2, start, comparetype)
InStrRev function checks if the string1 string2 is contained in starting the search from right to left. By default the value 'Start' is the last character of string2.
- Replace (string, find, replace)
the Replace function allows you to search a substring 'find' within the string and replace it with another substring 'replace' function defined in
- Filter (arrStrings, SearchFor, includes comparetype)
the Filter function to search within a matrix (array) of strings (arrstring) returns a subset of the array.
- Split (string, delimiter, count, comparetype)
the split decomposition the string into an array based on the presence of a character 'delimiter' content in it. The parameter 'count' sets the maximum number of substrings that must be created.
- Join (StringArray, delimiter)
the Join function is inverse to the previous split () takes as input an array of strings and joins them into one string using the delimiter character as shown in the 'delimiter' of function
- Asc (string)
the Asc function returns the ANSI code corresponding to the first character in the string
- Chr (integer)
the Chr function returns a string consisting of the character corresponding to the ANSI code specified in parameter "integer"
0 comments:
Post a Comment