Hi,
I am trying to write a regex to match pairs of cards (AA, KK, QQ ... 22)
and I have the regex ([AKQJT2-9])\1
. The problem I have is that this regex will match AA
as well as AAbc
etc. Is there a way to write the regex such that I can specify I want to match ([AKQJT2-9])\1
and only that (i.e. no more characters after).
Thanks