I have a regular expression here which works perfectly in Regex101 (see demo). anubhava provided this solution in this question.
/^(?=.*\b[1-9]\b)(?=.*\b1[0-7]\b)[0-9]+(?:,[0-9]+)+$/gm
However, when I try to use it in Google Analytics, I get this warning - "Invalid regular expression. Your data request includes an invalid regular expression."
Do you know how I can get the same results, but satisfy Google Analytics security requirements, which seem to be disallowing lookaheads?