 | CSTRUnQuote Method |
Remove double quotes from string
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void UnQuote(
CGXNETCore gxNetShared,
ref string str_val
)
public static void UnQuote(
CGXNETCore gxNetShared,
ref string str_val
)
Public Shared Sub UnQuote (
gxNetShared As CGXNETCore,
ByRef str_val As String
)
Public Shared Sub UnQuote (
gxNetShared As CGXNETCore,
ByRef str_val As String
)
public:
static void UnQuote(
CGXNETCore^ gxNetShared,
String^% str_val
)
public:
static void UnQuote(
CGXNETCore^ gxNetShared,
String^% str_val
)
static member UnQuote :
gxNetShared : CGXNETCore *
str_val : string byref -> unit
static member UnQuote :
gxNetShared : CGXNETCore *
str_val : string byref -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - str_val
- Type: SystemString
String to unquote
Remarks
THE STRING IS MODIFIED.
The pointers will be advanced past a first character
quote and a last character quote will be set to .\0'.
Both first and last characters must be quotes for the
triming to take place.
See Also