Aspose::Cells::U16String::Split method

U16String::Split(const Vector <char16_t>&) const method

Splits a string into substrings based on specified delimiting characters.

Vector<U16String> Aspose::Cells::U16String::Split(const Vector<char16_t> &separator) const
ParameterTypeDescription
separatorconst Vector <char16_t>&An array of delimiting characters.

ReturnValue

An array whose elements contain the substrings from this instance that are delimited by one or more characters in separator.

See Also

U16String::Split(const Vector <U16String>&) const method

Splits a string into substrings based on specified delimiting strings.

Vector<U16String> Aspose::Cells::U16String::Split(const Vector<U16String> &separator) const
ParameterTypeDescription
separatorconst Vector <U16String>&An array of strings that delimit the substrings in this string.

ReturnValue

An array whose elements contain the substrings in this string that are delimited by one or more strings in separator.

See Also