String Structure
This element is not available using the selected API.
This element is not available using the selected API.
In this article
Represents a Carmenta Engine string.
class String
A UTF-8 encoded string. Carmenta Engine holds strings internally in the UTF-8 encoding but this class provides methods that convert to and from other encodings.
The other API languages all have more natural built-in string types so this type is only available in the C++ API.
Windows, Linux, Android
The String type has the following members.
Name | Description |
---|---|
String | Initializes a new instance of the String class. |
Name | Description |
---|---|
length | Gets the number of characters in the string if converted to the encoding of the current code page. |
wlength | Gets the number of characters in string if converted to the wide character encoding of the platform. |
Name | Description |
---|---|
c_str | Converts a String into the current code page. |
c_wstr | Converts a String into the wide character representation of the platform. |
Creates a new String instance from a copy of the supplied UTF-8 encoded string. | |
operator!= | Determines whether the specified String is differs from the current String. |
operator< | Checks if the current String is less than the specified String. |
operator= | Assignment operator. |
operator== | Determines whether the specified String is equal to the current String. |
swap | Swaps the internal representation with the specified String. |
toUtf8 | Returns the contents of this String instance as an UTF-8 encoded string. |
In this article
This type is not available using the selected API. Instead the system type String is used.
In this article
This type is not available using the selected API. Instead the system type String is used.
In this article