Click or drag to resize
CSTRISplitString Method
Splits a string in two on a character.

Available since Oasis montaj version: 5.0.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
The original string is modified by terminating it at the character split. The part of the string past the character split is copied to the split string. Split characters in quoted strings are ignored. This function is mainly intended to separate comments from control file strings.
Syntax
public static void ISplitString(
	ref string str1,
	string str2,
	ref string str3
)

Parameters

str1
Type: SystemString
original string
str2
Type: SystemString
split character (first character of string)
str3
Type: SystemString
split string past split character.
See Also