Help for this page

Select Code to Download


  1. or download this
    my $regex = 'PATTERN';
    s/$regex/.../;
    
  2. or download this
    s/PATTERN/.../;
    
  3. or download this
    my $regex = qr/PATTERN/;
    s/$regex/.../;