Click or drag to resize

CSTRSubstr Method (String, String, Int32)

Extract part of a string.

Namespace:  GeoEngine.Core.GXNet
Assembly:  geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntax
public static void Substr(
	ref string dest,
	string orig,
	int start
)

public static void Substr(
	ref string dest,
	string orig,
	int start
)

Parameters

dest
Type: SystemString
Destination string
orig
Type: SystemString
Origin string
start
Type: SystemInt32
Start location
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