I have been searching about it for about 3 hrs, now I'm stuck. Here is the problem:
I want to find 7 character word where only 4. and 6. chars are same
like:
^...(.).\1.$
but i don't want to find
aaaBaBa
all other chars must different than each other like:
asdBfBg
my question is similar to this one: Java: Regular expression where each character occurs 0-1 times
but my knowledge wasn't enough to work with Lookarounds (?<= and (?=, (?
Perhaps you can use a negative assertion, like this:
This will find any 7-letter word with the 4th and 6th letters the same, and whose 1st, 2nd, 3rd, 5th, or 7th (
\6
) letter do not appear twice, and whose 4th letter is not repeated three times.