fork download
  1. shopt -s extglob
  2. string=" a 1, a 2, a 3 "
  3. foobar="\"${string//,/\",\"}\""
  4. echo "${foobar//*( )\"*( )/\"}"
Success #stdin #stdout 0s 4520KB
stdin
Standard input is empty
stdout
"a 1","a   2","a 3"