in reply to Re: Texas Hold'ems Poker Analysis Tool
in thread Texas Hold'ems Poker Analysis Tool
would match "ab" or "dm".if($sorted_values=~/([abcdefghijklm]{2})/){ # Rest of code here }
How about:
if($sorted_values=~/(([abcdefghijklm])\2)/){ # Rest of code here }
|
|---|