Help for this page

Select Code to Download


  1. or download this
    $str =~ /^A[^A-Z]*B[^A-Z]*C[^A-Z]*D$/;
    
  2. or download this
    my $nu = qr/[^A-Z]*/;
    $str =~ /^ A ${nu} B ${nu} C ${nu} D $/x;