Help for this page

Select Code to Download


  1. or download this
    my @values = qw/ a ab. d ef def g|h /;
    my $regex_str = join '|',             # 4.
    ...
        @values;                          # 1.
    my $regex = qr/$regex_str/;           # 5.
    print "$regex\n";                     # 6.
    
  2. or download this
    (?^:ab\.|def|g\|h|ef|a|d)