 | CSYSIReplaceString Method (CGXNETCore, String, String, Int32, String) |
Replace "% %" tokens in a string with parameter values
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void IReplaceString(
CGXNETCore gxNetShared,
string str_val,
ref string output,
int size,
string group
)
public static void IReplaceString(
CGXNETCore gxNetShared,
string str_val,
ref string output,
int size,
string group
)
Public Shared Sub IReplaceString (
gxNetShared As CGXNETCore,
str_val As String,
ByRef output As String,
size As Integer,
group As String
)
Public Shared Sub IReplaceString (
gxNetShared As CGXNETCore,
str_val As String,
ByRef output As String,
size As Integer,
group As String
)
public:
static void IReplaceString(
CGXNETCore^ gxNetShared,
String^ str_val,
String^% output,
int size,
String^ group
)
public:
static void IReplaceString(
CGXNETCore^ gxNetShared,
String^ str_val,
String^% output,
int size,
String^ group
)
static member IReplaceString :
gxNetShared : CGXNETCore *
str_val : string *
output : string byref *
size : int *
group : string -> unit
static member IReplaceString :
gxNetShared : CGXNETCore *
str_val : string *
output : string byref *
size : int *
group : string -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - str_val
- Type: SystemString
String to filter replace - output
- Type: SystemString
Output string - size
- Type: SystemInt32
Output string length - group
- Type: SystemString
Default group name
Remarks
If parameter does not exist, the token is removed. Full parameter names,
such as "%group.name%", are used as-is. Partial parameter names, such as
"%name%" will have the default group attached.
See Also