Aspose::Cells::U16String::EndsWith method

U16String::EndsWith(const U16String&) const method

Determines whether the end of this string instance matches the specified string.

bool Aspose::Cells::U16String::EndsWith(const U16String &value) const
ParameterTypeDescription
valueconst U16String&The string to compare to the substring at the end of this instance.

ReturnValue

true if value matches the end of this instance; otherwise, false.

See Also

U16String::EndsWith(const U16String&, bool) const method

Determines whether the end of this string instance matches the specified string, ignoring or honoring their case.

bool Aspose::Cells::U16String::EndsWith(const U16String &value, bool ignoreCase) const
ParameterTypeDescription
valueconst U16String&The string to compare to the substring at the end of this instance.
ignoreCasebooltrue to ignore case during the comparison; otherwise, false.

ReturnValue

true if value matches the end of this instance; otherwise, false.

See Also