xpfSubstituteStringsInString
FUNCTION xpfSubstituteStringsInString(str : STRING; stringToBeSubstituted : STRING; stringSubstitution : STRING) resultString : STRING;
Function to substitute all given sub strings in a specified string.
Â
Â
Arguments
1 | Type | Name | Comment |
2 | STRING | str | The original input string |
3 | STRING | stringToBeSubstituted | Defines the sub string in "str" to be substituted. There may be any number of sub strings in "str" that will be substituted. |
4 | STRING | stringSubstitution | Â Defines the string that will be the substitution of the "stringToBeSubstituted" sub strings. |
Return Value
Â
Type | Name | Comment |
STRING | resultString | When successfully performed, the function return the resulting string from the substitution operation. When the function fail, the value INDETERMINATE (?) will be returned. Exception handling should be used to handle error conditions in the actual xpfSubstituteStringsInString() operation. |
Options
 | Option | Comment |
---|---|---|
1 | xpxSYSTEM_DEFINED_EXTENSION | Use the system defined extra lower case characters in the operation. The system defined extra lower case characters is set by the EDM_EXTENDED_LOWERCASE_CHARACTERS configuration variable. |
Â
Example
<Missing Example>
Â
See also
Filter by label
There are no items with the selected labels at this time.
Â