I am dealing with csv file and i am converting it to DataTable. But it contains strings as follows.
"Pull PEG Kit, 24" , Ref:P-PEG-24, Exp: 2019/03"
Above phrase is one word. i have used following Regular expression to obtain values within double quotes.
"\".*?\""
But in this scenario it break the word as
"Pull PEG Kit, 24"
Ref:P-PEG-24
Exp: 2019/03"
but i need the word
Pull PEG Kit, 24" , Ref:P-PEG-24, Exp: 2019/03
how can i solve this using c#? please help me to solve this
Thanks in advance.