Edit

Share via


Ascii.Trim Method

Definition

Overloads

Trim(ReadOnlySpan<Byte>)

Trims all leading and trailing ASCII whitespaces from the buffer.

Trim(ReadOnlySpan<Char>)

Trims all leading and trailing ASCII whitespaces from the buffer.

Trim(ReadOnlySpan<Byte>)

Source:
Ascii.Trimming.cs
Source:
Ascii.Trimming.cs

Trims all leading and trailing ASCII whitespaces from the buffer.

public:
 static Range Trim(ReadOnlySpan<System::Byte> value);
public static Range Trim (ReadOnlySpan<byte> value);
static member Trim : ReadOnlySpan<byte> -> Range
Public Shared Function Trim (value As ReadOnlySpan(Of Byte)) As Range

Parameters

value
ReadOnlySpan<Byte>

The ASCII buffer.

Returns

The range of the untrimmed data.

Applies to

Trim(ReadOnlySpan<Char>)

Source:
Ascii.Trimming.cs
Source:
Ascii.Trimming.cs

Trims all leading and trailing ASCII whitespaces from the buffer.

public:
 static Range Trim(ReadOnlySpan<char> value);
public static Range Trim (ReadOnlySpan<char> value);
static member Trim : ReadOnlySpan<char> -> Range
Public Shared Function Trim (value As ReadOnlySpan(Of Char)) As Range

Parameters

value
ReadOnlySpan<Char>

The ASCII buffer.

Returns

The range of the untrimmed data.

Applies to