Methods
The following methods are defined in the UString class.
| Name | Description |
|---|---|
| Constructor | Initialize the UString object |
| CharAt | Returns the character at the specified position |
| CharCodeAt | Returns the character code of the character at the specified position |
| Concat | Concatenate strings |
| EqualsIgnoreCase | Compare strings case insensitive |
| IndexOf | Search for a string from the beginning |
| LastIndexOf | Search for strings from the back |
| LocaleCompare | Compare strings based on locale |
| Replace | Replace string |
| Slice | Cut out a part of the character string |
| Split | Split the string |
| Substring | Cut out a part of the character string |
| ToLocaleLowerCase | Converts uppercase letters to lowercase letters based on the locale |
| ToLocaleUpperCase | Converts lowercase letters to uppercase based on locale |
| ToLowerCase | Converts uppercase letters to lowercase letters |
| ToString | Returns the string of the UString object as is |
| ToUpperCase | Converts lowercase letters to uppercase |
| Trim | Remove the margins of the string Added since Ver.5.0.0 |
| ValueOf | Returns the value of a UString object |
Static methods
| Name | Description |
|---|---|
| FromCharCode | Create a string from the character code |