Replace string:
'?' a reference to the corresponding single
letter wildcard in the search string
(if no digit or '(' follows).
'?n' n = { 1,...,9 }
a reference to the n'th single letter wildcard
in the search string
'*' a reference to the corresponding multi
letter wildcard in the search string
(no digit or '(' follows).
'*n' n = { 1,...,9 }
a reference to the n'th multi letter wildcard
in the search string
'*(key)' the value of the database field named 'key' (or '' - see below)
'*([key]#default)' value of DB field 'key' (if empty or missing -> return 'default')
'*([key]\:nsrt)' invokes the SRT recursively on the value of DB field 'key' (or on '')
(Note: all ':' have to be escaped using '\')
'*([key]|ACI)' invokes ACI (see ´ARB Command Interpreter (ACI)´) on the value of DB field 'key' (or on '')
Note: all above "*(key...)"-constructs read the content of DB field 'key'. If no fieldname is specified (possible where '[key]' is used in the description above) or if the field does not exists, an empty string is used instead.