Version: 2022.2
LanguageEnglish
  • C#

StringView.Substring

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public stringView Substring(int start);

Parameters

start The starting index.

Returns

stringView A new StringView.

Description

Returns a substring of the current StringView, starting at index start and until the end of the StringView.

This does not create another string. The substring is only a new StringView with the same base string and its start and end indices modified. The starting index is an offset to the current StringView.


Declaration

public stringView Substring(int start, int length);

Parameters

start The starting index.
length The length of the substring.

Returns

stringView A new StringView.

Description

Returns a substring of the current StringView, starting at index start and with the specified length.

This does not create another string. The substring is only a new StringView with the same base string and its start and end indices modified. The starting index is an offset to the current StringView.