Unicode Intrinsic Functions - ReplaceAll Method
Replace all occurrences of the specified string in the source
Member of Unicode Intrinsic Functions (PRIM_LIBI.IUnicodeIntrinsics)
| Name | Type | Data Type | Description |
|---|---|---|---|
| Result | *Result (Optional) | Unicode String | Resulting value after all Objects have been replaced |
| Object | *Input | Unicode String | Value to be replaced |
| Replacement | *Input | Unicode String | Value to replace the specified Object value |
ReplaceAll replaces all instances of the value specified in the Object parameter with the value specified in the Replacement parameter.
In this example, if #String contained "ABC 123 XYZ" the result would be "ABC_123_XYZ"
#Com_owner.Caption := #String.ReplaceAll( " " "_" )
Febuary 18 V14SP2