Textové Funkce

Asc Returns the code of a character in a string. use String.Code for strings
Chr$ Returns a character from its code. use String.Chr for strings
Comp Compares two strings. ?
Html$ Quotes a string so that it is valid html. ?
InStr Searches a string into another string. use String.InStr for strings
LCase$ Converts a string to lowercase. use String.Code for strings
Left$ Returns the first characters of a string. use String.Left for strings
Len Returns the length of a string. use String.Code for strings
LTrim$ Strips white spaces from the left of a string. ?
Mid$ Returns a part of a string. use String.Mid for strings
Quote$ Quotes a string. ?
Replace$ Replaces in a string a substring by another one. ?
Right$ Returns the last characters of a string. use String.Right for strings
RInStr Searches a string into another string from its right. use String.RInStr for strings
RTrim$ Strips white spaces from the right of a string. ?
Scan Splits a string against a regular expression pattern. ?
Space$ Returns a string containing only space. ?
Split Splits a string into substrings. ?
String$ Returns the same string concatenated many times. ?
Subst$ Substitutes strings in a pattern. ?
Trim$ Strips white spaces from a string. ?
UCase$ Converts a string to uppercase. use String.UCase for strings
UnQuote$ Unquotes a string. ?

Most of these functions only deal with strings. To manipulate strings, use the String Třída.

Viz také