StringSegment.Substring Method

Definition

Overloads

Substring(Int32)

Retrieves a substring from this StringSegment. The substring starts at the position specified by offset and has the remaining length.

Substring(Int32, Int32)

Retrieves a substring from this StringSegment. The substring starts at the position specified by offset and has the specified length.

Substring(Int32)

Source:
StringSegment.cs
Source:
StringSegment.cs
Source:
StringSegment.cs
Source:
StringSegment.cs

Retrieves a substring from this StringSegment. The substring starts at the position specified by offset and has the remaining length.

public:
 System::String ^ Substring(int offset);
public string Substring (int offset);
member this.Substring : int -> string
Public Function Substring (offset As Integer) As String

Parameters

offset
Int32

The zero-based starting character position of a substring in this StringSegment.

Returns

A String that is equivalent to the substring of remaining length that begins at offset in this StringSegment.

Exceptions

offset is greater than or equal to Length or less than zero.

Applies to

Substring(Int32, Int32)

Source:
StringSegment.cs
Source:
StringSegment.cs
Source:
StringSegment.cs
Source:
StringSegment.cs

Retrieves a substring from this StringSegment. The substring starts at the position specified by offset and has the specified length.

public:
 System::String ^ Substring(int offset, int length);
public string Substring (int offset, int length);
member this.Substring : int * int -> string
Public Function Substring (offset As Integer, length As Integer) As String

Parameters

offset
Int32

The zero-based starting character position of a substring in this StringSegment.

length
Int32

The number of characters in the substring.

Returns

A String that is equivalent to the substring of length length that begins at offset in this StringSegment.

Exceptions

offset or length is less than zero, or offset + length is greater than Length.

Applies to