Help for this page

Select Code to Download


  1. or download this
    s/(,)|(".*?")/ $1 || $2 =~ s(,)( )gr /ge;
    
  2. or download this
    s/(,)|(".*?")/ $1 || do { (my $s = $2) =~ s(,)( )g; $s } /ge;