Help for this page

Select Code to Download


  1. or download this
    if ( /(BA[ABC]{2})|(CA[CD]{2})|(DA[SC]{2})/ )
       my $first =
    ...
         : defined( $2 ) ? 2
         : 3
         );
    
  2. or download this
    local our $first;
    
    ...
       |   CA[CD]{2}  (??{ $first = 2; })
       |   DA[SC]{2}  (??{ $first = 3; })
    /x;