Remove all occurrences of the specified string from the source
Member of Compatible Unicode Intrinsic Functions (PRIM_LIBI.ICompatibleUnicodeIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Unicode String | Resulting value after all occurrences have been removed |
Object | *Input | Unicode String | Value to be removed |
RemoveAll removes all occurrences of the string supplied in the Object parameter. This is similar to the RemoveCharacters intrinsic, except that RemoveAll searches the subject string for instances of the entire search string rather than individual characters. RemoveAll is case sensitive.
In this example, if #String contained the value ?HABERDASHERY?, the result would be ?HABERERY?
#String := #String.RemoveAll( "DASH" )
Febuary 18 V14SP2