Unquote
String functions unquote
syntax
- unquote(string_dataitem)
definition
unquote(string_dataitem) removes single quotes from the values of Data item string_dataitem.
applies to
data item string_dataitem with string Value type
example
attribute<string> unquoteA (ADomain) := unquote(A);
| A | unquoteA |
|---|---|
| '’Test’’ | ‘Test’ |
| '’88hallo99’’ | ‘88hallo99’ |
| ’’+)’’ | ’+)’ |
| '’twee woorden’’ | ‘twee woorden’ |
| ’’ test met spatie’’ | ’ test met spatie’ |
ADomain nr of rows = 5