StringSegment.Subsegment Method

Definition

Overloads

Subsegment(Int32)

Retrieves a StringSegment that represents a substring from this StringSegment. The StringSegment starts at the position specified by offset.

Subsegment(Int32, Int32)

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

Subsegment(Int32)

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

Retrieves a StringSegment that represents a substring from this StringSegment. The StringSegment starts at the position specified by offset.

public:
 Microsoft::Extensions::Primitives::StringSegment Subsegment(int offset);
public Microsoft.Extensions.Primitives.StringSegment Subsegment (int offset);
member this.Subsegment : int -> Microsoft.Extensions.Primitives.StringSegment
Public Function Subsegment (offset As Integer) As StringSegment

Parameters

offset
Int32

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

Returns

A StringSegment that begins at offset in this StringSegment whose length is the remainder.

Exceptions

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

Applies to

Subsegment(Int32, Int32)

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

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

public:
 Microsoft::Extensions::Primitives::StringSegment Subsegment(int offset, int length);
public Microsoft.Extensions.Primitives.StringSegment Subsegment (int offset, int length);
member this.Subsegment : int * int -> Microsoft.Extensions.Primitives.StringSegment
Public Function Subsegment (offset As Integer, length As Integer) As StringSegment

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 StringSegment 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