String Functions
Functions for creating, searching, and manipulating strings in RAD Basic.
In this section
| Function | Description |
|---|---|
| Asc | Returns the ASCII code of the first character of a string |
| Chr | Returns the character corresponding to an ASCII code |
| InStr | Returns the position of a substring within a string |
| LCase | Converts a string to lowercase |
| Left | Returns a specified number of characters from the left of a string |
| Len | Returns the number of characters in a string |
| Mid | Returns a substring from within a string |
| Replace | Replaces occurrences of a substring within a string |
| Right | Returns a specified number of characters from the right of a string |
| UCase | Converts a string to uppercase |