I am trying to print a table from .csv file which is generated by libreoffice in such a way one of the column has a value comma separated e.g John,Terang i want to print John, Terang without any quotes, but it seems to be printed as "John,Terang" because when i open in text editor actual value it shows as "{John,Terang}" so it printed as "John,Terang" how do i print as John,Terang without modifying .csv file
Till now i have try so far,
\documentclass[11pt,a4paper]{article}
\usepackage{csvsimple}
\usepackage{filecontents}
\begin{filecontents*}{file.csv}
SlNo,Name,Occupation
1,Daniel Rongpi,"{a,b}"
2,"{John, Terang}","{service, fire}"
3,ffdfdf,wewe
\end{filecontents*}
\begin{document}
\begin{tabular}{|l|l|l|}
\hline
Sl.No. & Name & Occupation\\\hline
\csvreader[head to column names]{file.csv}{}
{\SlNo & \Name & \Occupation\\\hline
}
\end{tabular}
\end{document}
The ouput of the above code is shown below

but output which i want is something like this without modifying the .csv file




" some text, other text"grouping as single block@egreg – Biki Teron Apr 03 '18 at 12:46csvsimple– egreg Apr 03 '18 at 12:52\catcodecommand. – Biki Teron Apr 03 '18 at 13:14csvsimpleis not able to cope with"delimited entries for hiding a comma. – egreg Apr 03 '18 at 13:26