SpanExtensionsRemoveQuotes(ReadOnlySpanChar) Method
Extracts content of a single or double quoted string.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.0.0
public static ReadOnlySpan<char> RemoveQuotes(
this ReadOnlySpan<char> span
)
<ExtensionAttribute>
Public Shared Function RemoveQuotes (
span As ReadOnlySpan(Of Char)
) As ReadOnlySpan(Of Char)
public:
[ExtensionAttribute]
static ReadOnlySpan<wchar_t> RemoveQuotes(
ReadOnlySpan<wchar_t> span
)
[<ExtensionAttribute>]
static member RemoveQuotes :
span : ReadOnlySpan<char> -> ReadOnlySpan<char>
- span ReadOnlySpanChar
- The span to be extracted from quotes.
ReadOnlySpanCharIf
span was surrounded by single or double quotes, returns a new string without the quotes; otherwise, returns
span.In Visual Basic and C#, you can call this method as an instance method on any object of type
ReadOnlySpanChar. 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).