^[8-9]\d{7}$
[89]\d{7}
[89]\\d{7}
^[89]\\d{7}$
then somewhere in your code you should be doing new Regex(params, 'm')
^\+\d{2}|[89][0-9]{7}$
\
characters are causing trouble you could set it as follows:
^[89][0-9]{7}$