I am trying to read below from CSV and split accordingly:
"1000";" ";"";;0;0;0;0
"1001";"tit;le1";"desc";0;0;0;0
"1002";"title2";"desc2";0;0;0;0
"1003";"title3";"desc123 desc23 desc2 de
sc34 dfd desc45 desc454;,
dfd desc desc";0;0;0;0
"1004";"tilte4";"desc5";0;0;0;0
I am using [^;"][^"]+
and could get outcome of the strings between " "
if not empty in above snippet.
I need the empty contents as well. Can you please help to correct the regex here [^;"][^"]+