Returns a double-quoted substring extracted from a string (cf. the Reality DQUOTE function).
This version of the DQUOTE function is provided for compatibility with D3. It is only available in D3, AP, PICK and R83 modes (set with the $OPTIONS statement).
DQUOTE(string)
string A DataBasic expression that evaluates to a string.
The DQUOTE function returns the first substring found that is surrounded by double quotation marks. If no substring is found that matches this criterion, a null string is returned.
$OPTIONS D3 PRINT DQUOTE('ABC"DEF"GHI')
Prints DEF
; that is, the part of the string that is enclosed in
double quotes.