Help for this page

Select Code to Download


  1. or download this
    if ($s =~ /${\REGEX}/) {
    
  2. or download this
    my $re = REGEX;
    if ( $s =~ /$re/ ) {
    
  3. or download this
    
    my $REGEX = qr/cat/;
    #...
    if ( $s =~ /$REGEX/ ) {