Aspose::Cells::U16String::LastIndexOf method

U16String::LastIndexOf(const char16_t) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const char16_t value) const
ParameterTypeDescription
valueconst char16_tTo be searched.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also

U16String::LastIndexOf(const char16_t, int32_t) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const char16_t value, int32_t startIndex) const
ParameterTypeDescription
valueconst char16_tTo be searched.
startIndexint32_tThe search starting position. The search proceeds from startIndex toward the beginning of this instance.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also

U16String::LastIndexOf(const char16_t, int32_t, int32_t) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const char16_t value, int32_t startIndex, int32_t count) const
ParameterTypeDescription
valueconst char16_tTo be searched.
startIndexint32_tThe search starting position. The search proceeds from startIndex toward the beginning of this instance.
countint32_tThe number of character positions to examine.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also

U16String::LastIndexOf(const U16String&) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const U16String &value) const
ParameterTypeDescription
valueconst U16String&To be searched.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also

U16String::LastIndexOf(const U16String&, int32_t) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const U16String &value, int32_t startIndex) const
ParameterTypeDescription
valueconst U16String&To be searched.
startIndexint32_tThe search starting position. The search proceeds from startIndex toward the beginning of this instance.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also

U16String::LastIndexOf(const U16String&, int32_t, int32_t) const method

Returns the index of the last occurrence of the value in this.

int32_t Aspose::Cells::U16String::LastIndexOf(const U16String &value, int32_t startIndex, int32_t count) const
ParameterTypeDescription
valueconst U16String&To be searched.
startIndexint32_tThe search starting position. The search proceeds from startIndex toward the beginning of this instance.
countint32_tThe number of character positions to examine.

ReturnValue

The zero-based index position of value if that character is found, or -1 if it is not.

See Also