I have this regex
^(\d+)/\1$
that matches strings like
1/1
2/2
5/5
I want to get the inverse result of this regex. I browsed the net and stack overflow and found that
^((?!(\d+)/\1.).)*$
should do the trick, but it doesn't.
Could anyone point me into the right direction?