fork(2) download
  1. #!/usr/bin/perl
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6.  
  7. my $str = "abc(def)ghi";
  8. my $regexp = qr/( \( [^()]* \) )/x;
  9. my @strArr = grep {/\S/} split /$regexp/, $str;
  10. print join(", ", @strArr);
Success #stdin #stdout 0s 17760KB
stdin
Standard input is empty
stdout
abc, (def), ghi