Syntax of Regex with Lookahead
Here is the syntax for incorporating lookahead into a regular expression:
Token-Regex/Lookahead-Regex
The / indicates lookahead. The regular expression
to the right of the / is what you want to lookahead for.
Note: the input corresponding to the lookahead will be
scanned after the token is read.