JavaScript regex character exclusion

javascript, regex

Solution

You can still do ranges, but you'll have to do ranges that exclude those letters, so something like A-PR-UWYZ

Problem

I have this JavaScript regex: ``` /^[a-zA-ZęóąśłżźćńĘÓĄŚŁŻŹĆŃ]+$/ ``` but I would like to exclude some of the letters in `a-zA-Z`, namely `qvxQVX`. How do I change the regex to achieve this?

Original source