Substring
Returns a substring of the current StringView, starting at index start and until the end of the StringView.
Read time 1 minuteLast updated 7 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
Substring(int)
Returns a substring of the current StringView, starting at index start and until the end of the StringView.
public StringView Substring(int start)
Parameters
The starting index.
Returns
Type | Description |
|---|---|
| StringView | A new StringView. |
Remarks
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.
Substring(int, int)
Returns a substring of the current StringView, starting at index start and with the specified length.
public StringView Substring(int start, int length)
Parameters
Returns
Type | Description |
|---|---|
| StringView | A new StringView. |
Remarks
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.