SyntaxFix
Write A Post
Hire A Developer
Questions
Preprocess your input CSV to replace blank entries with \N.
Attempt at a regex: s/,,/,\n,/g and s/,$/,\N/g
Good luck.