 | CSTRSubstr Method (CGXNETCore, String, String, Int32, Int32) |
Note: This API is now obsolete.
Extract part of a string.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntax[ObsoleteAttribute("Deprecated since unknown, ")]
public static void Substr(
CGXNETCore gxNetShared,
ref string dest,
string orig,
int start,
int length
)
[ObsoleteAttribute("Deprecated since unknown, ")]
public static void Substr(
CGXNETCore gxNetShared,
ref string dest,
string orig,
int start,
int length
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Shared Sub Substr (
gxNetShared As CGXNETCore,
ByRef dest As String,
orig As String,
start As Integer,
length As Integer
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Shared Sub Substr (
gxNetShared As CGXNETCore,
ByRef dest As String,
orig As String,
start As Integer,
length As Integer
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
static void Substr(
CGXNETCore^ gxNetShared,
String^% dest,
String^ orig,
int start,
int length
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
static void Substr(
CGXNETCore^ gxNetShared,
String^% dest,
String^ orig,
int start,
int length
)
[<ObsoleteAttribute("Deprecated since unknown, ")>]
static member Substr :
gxNetShared : CGXNETCore *
dest : string byref *
orig : string *
start : int *
length : int -> unit
[<ObsoleteAttribute("Deprecated since unknown, ")>]
static member Substr :
gxNetShared : CGXNETCore *
dest : string byref *
orig : string *
start : int *
length : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - dest
- Type: SystemString
Destination string - orig
- Type: SystemString
Origin string - start
- Type: SystemInt32
Start location - length
- Type: SystemInt32
Number of characters
Remarks
The destination string length will be less than the
requested length if the substring is not fully enclosed
in the origin string.
The length of the destination string MUST be at least
the requested lenth plus 1.
See Also