Strings module
Procedures that check properties of strings:
- Len$, Len, LenB$, LenB - returns the length of a string
- Asc, AscB, AscW - returns the character code of the first letter in a string
- StrComp - compares two strings
- InStr$, InStrB, InStr - finds the position of a given substring in a string
Procedures that create strings:
- Chr$, Chr, ChrB$, ChrB, ChrW$, ChrW - returns the character having a given code
- Space$, Space - return a string of spaces
- String$, String - return a string of specified characters
Procedures that return modified strings:
- Left$, Left, LeftB$, LeftB - extract a left substring of a string
- Mid$, Mid, MidB$, MidB- extract a substring of a string
- Right$, Right, RightB$, RightB - extract a right substring of a string
- LTrim$, LTrim, RTrim$, RTrim - removes leading/trailing spaces from a string
- Trim$, Trim - removes leading and trailing spaces from a string
- StrReverse - reverses the order of characters of a string
- LCase$, LCase, RCase$, RCase - capitalizes or lowercases a string
- StrConv - converts the string to a specified format
- Join - concatenates a string array using a given delimiter
- Split - splits a string into a string array
- Replace - replaces substrings in a string
- Filter - filters a string array into a subset according to criteria
- InStrRev - filters a string array into a subset according to criteria
- Format$, Format - format a numeric expression in a specific way
- FormatCurrency - format an expression as a currency string
- FormatDateTime - formats an expression as a date/time string
- FormatNumber - formats an expression as a numeric string
- FormatPercent - formats an expression as a percent string
- MonthName - returns the name of the specified month
- WeekdayName - returns the name of the specified day of the week
Warning
Work in Progress Below