Unicode Intrinsic Functions - Replace Method

Replace the specified string

Member of Unicode Intrinsic Functions (PRIM_LIBI.IUnicodeIntrinsics)

Parameters

NameTypeData TypeDescription
Result*Result (Optional)Unicode StringResulting value after the object has been replaced
Object*InputUnicode StringValue to be replaced
Replacement*InputUnicode StringValue to replace the specified Object value

Details

Replace replaces the first instance of the value specified in the Object parameter with the value specified in the Replacement parameter.

Example

In this example, if #String contained "ABC 123" the result would be "ABC_123""
#Com_owner.Caption := #String.Replace( " " "_" )

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2