PRO_ARR_DESCAPE function
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
PRO_ARR_DESCAPE function
Removes escape characters from a single element
of a character array. PRO_ARR_DESCAPE scans the char_element looking
for the separator character ( ; ) or an escape character ( ~ ).
The function removes an escape character when it finds any of these
constructs:
- Escape character followed by a separator character ( ~; )
- Escape character followed by another escape character ( ~~ )
- Escape character followed by a
NULLterminator ( ~\0 )
Syntax
|
Parameter
- char_element
-
The character representation of an array element, without any leading or trailing separators. Must be data type
NVARCHAR,VARCHAR,orCHAR.
Note
char_element should
not be the name of an array column, since the column contains true
separators that would be destroyed by this function.
Examples
The
following example returns the string 'aa;aa':
|
The following example returns the string 'aa~aa'. There
is no change, since another special character does not follow the
escape character:
|
This example returns the string 'aa~;aa':
|