SpanExtensionsRemoveQuotes(SpanChar) Method

Extracts content of a single or double-quoted string.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public static Span<char> RemoveQuotes(
	this Span<char> span
)

Parameters

span  SpanChar
The span to be extracted from quotes.

Return Value

SpanChar
If span was surrounded by single or double quotes, returns a new string without the quotes; otherwise, returns span.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SpanChar. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also