I am trying to match everything except
"""
in Regex. My attempt includes:
[^\"]{3}
This only includes everything except a double quote. I want to also include one double quotes and two double quotes, so that, for instance, this entire string would match:
This example "" would match " all the way.
I am trying to make this work using JFlex.