Click or drag to resize

CSTRIReplaceiMatchString Method (String, String, String)

Replaces all occurances of match string by replacement string with case insensitive.

Namespace:  GeoEngine.Core.GXNet
Assembly:  geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void IReplaceiMatchString(
	ref string istr,
	string old,
	string new_str
)

public static void IReplaceiMatchString(
	ref string istr,
	string old,
	string new_str
)

Parameters

istr
Type: SystemString
Destination String
old
Type: SystemString
Match string to replace
new_str
Type: SystemString
Replacement string
Remarks
If the replacement string is "" (NULL character) then the string to replace is removed from the input string, and the string is shortened.
See Also