Single or double quotes are common delimiters, but the delimiter may be any character. Examples:
1. {{ VALUE (QUERY_STRING, SERVER, MATCH=”?userid=fred\s”) }} 2. {{ VALUE (QUERY_STRING, SERVER, MATCH=/?userid=”fred\s”/) }}
(Note that QUERY_STRING is a server variable that contains the query string part of the URL.)
The second regular expression includes quotes, so a delimiter (/) was chosen that does not occur in the expression.
Another way to accomplish the above is to use the QUERYPARAM source option:
{{ VALUE(userid, QUERYPARAM, MATCH=”fred\s”, URLENCODE) }}