Process CSV with quotes (gawk) awk

Parse quoted CSV fields correctly with FPAT in gawk

gawk -v FPAT='([^,]+)|("[^"]+")' '{print $2}' data.csv