Aspose::Cells::U16String::Substring method
Contents
[
Hide
]U16String::Substring(int32_t) const method
Retrieves a substring from this instance. The substring starts at a specified character position and continues to the end of the string.
U16String Aspose::Cells::U16String::Substring(int32_t startIndex) const
| Parameter | Type | Description |
|---|---|---|
| startIndex | int32_t | The zero-based starting character position of a substring in this instance. |
ReturnValue
A string that is equivalent to the substring that begins at startIndex in this instance, or Empty if startIndex is equal to the length of this instance.
See Also
- Class U16String
- Class Vector
- Class U16String
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
U16String::Substring(int32_t, int32_t) const method
Retrieves a substring from this instance. The substring starts at a specified character position and has a specified length.
U16String Aspose::Cells::U16String::Substring(int32_t startIndex, int32_t length) const
| Parameter | Type | Description |
|---|---|---|
| startIndex | int32_t | The zero-based starting character position of a substring in this instance. |
| length | int32_t | The number of characters in the substring. |
ReturnValue
A string that is equivalent to the substring that begins at startIndex in this instance, or Empty if startIndex is equal to the length of this instance.
See Also
- Class U16String
- Class Vector
- Class U16String
- Namespace Aspose::Cells
- Library Aspose.Cells for C++