I'm having trouble getting the other side of this regex.
Stranger Number is %19. Friend Number is %30.
My current regex is this (%[0-9]+)
So when I run this regex. The only highlighted are the %30 and %19.
Strange Number is %19. Friend Number is %30.
I just want it the other way around where %19 and %30 is not the highlighted one and everything else is highlighted.
I have tried. this one [^%](?![0-9])
but im not getting my expected output.
thanks for the help!