Help for this page

Select Code to Download


  1. or download this
    $command =~ m/(!\w+\s?.+?)(?=!\w)/simg;
    
  2. or download this
    my @commands = $command =~ m/(!\w+\s?.+?)(?=!\w)/simg;
    
  3. or download this
    my @commands = $command =~ m/(!\w+\s?.+?)(?=!\w|\z)/simg;
    
  4. or download this
    foreach my $command (@commands) {
        ...
    }