Base class: Object
The String class provides an interface for manipulating ASCII text strings.
| Property | Type | Description |
|---|---|---|
| String | Constructor | String(const char* c) |
| String | Constructor | String(const int i) |
| String | Constructor | String(const float f) |
| String | Constructor | String(const double f) |
| Find | Method | performs a search operation |
| Left | Method | returns leftmost characters |
| GetSize | Method | returns the length of the string |
| Lower | Method | converts the string to lowercase |
| Mid | Method | returns the length of the string |
| Replace | Method | performs a search and replace operation |
| Right | Method | returns rightmost characters |
| Split | Method | segments the string |
| StartsWith | Method | compares the beginning of two strings |
| ToFloat | Method | converts the string to a floating point value |
| ToInt | Method | converts the string to an integer value |
| Trim | Method | removes whitespace characters from the ends of the string |
| Upper | Method | converts the string to uppercase |
| Xor | Method | performs an XOR operation |
| Uuid | Function | creates a unique universal identifier |