String Intrinsic Functions - Replace Method
Replace the specified string
Member of String Intrinsic Functions (PRIM_LIBI.ICommonStringIntrinsics)
| Name | Type | Data Type | Description |
|---|---|---|---|
| Result | *Result (Optional) | String | Resulting value after the object has been replaced |
| Object | *Input | String | Value to be replaced |
| Replacement | *Input | String | Value to replace the specified Object value |
Replace replaces the first instance of the value specified in the Object parameter with the value specified in the Replacement parameter.
In this example, if #String contained "ABC 123" the result would be "ABC_123""
#Com_owner.Caption := #String.Replace( " " "_" )
Febuary 18 V14SP2