Help for this page

Select Code to Download


  1. or download this
    my $what = "fred|barney";
    ...
    if ($_ =~ ($what){3}) { ... }
    
  2. or download this
    if ($_ =~ $what{3}) { ... }
    
  3. or download this
    if ($_ =~ //) { ... }
    
  4. or download this
    if (1) { ... }
    
  5. or download this
    my $what = "(fred|barney){3}";
    ...
    if ($_ =~ $what) { ... }
    
  6. or download this
    if ($_ =~ /($what){3}/) { ... }
    ....
    if ($_ =~ /$what/) { ... }
    
  7. or download this
    if (/($what){3}/) { ... }
    ...
    if (/$what/) { ... }