Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

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

start

The starting index.

Returns

Type

Description

StringViewA 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

start

The starting index.

length

The length of the substring.

Returns

Type

Description

StringViewA 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.