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