 | CSTRReplaceNonASCII Method |
Replace non-ASCII characters in a string.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void ReplaceNonASCII(
CGXNETCore gxNetShared,
ref string str_val,
string rpl
)
public static void ReplaceNonASCII(
CGXNETCore gxNetShared,
ref string str_val,
string rpl
)
Public Shared Sub ReplaceNonASCII (
gxNetShared As CGXNETCore,
ByRef str_val As String,
rpl As String
)
Public Shared Sub ReplaceNonASCII (
gxNetShared As CGXNETCore,
ByRef str_val As String,
rpl As String
)
public:
static void ReplaceNonASCII(
CGXNETCore^ gxNetShared,
String^% str_val,
String^ rpl
)
public:
static void ReplaceNonASCII(
CGXNETCore^ gxNetShared,
String^% str_val,
String^ rpl
)
static member ReplaceNonASCII :
gxNetShared : CGXNETCore *
str_val : string byref *
rpl : string -> unit
static member ReplaceNonASCII :
gxNetShared : CGXNETCore *
str_val : string byref *
rpl : string -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - str_val
- Type: SystemString
String to modify - rpl
- Type: SystemString
Replacement character
Remarks
All characthers > 127 will be replaced by the first character
of the replacement string.
See Also