I have been searching inverse regex and wasn't able to find one.
I have prepared a regex that finds a specific pattern in the table.
Regex: ^R([0-9]{3}|[0-9]{4})[-][a-zA-Z]{2,3}[-]([0-9]{5}|[0-9]{4})$
Example: R788-COV-2040
Now I want to find all values that do not follow this regex pattern.
Every answer online is about not containing a specific string but not regex.