I have simple simple CSV file as follow (3 columns and 4 rows for that example):
A , B , C
A , ”B,C” , D
“A,B” , C , D
A , B , ”C,D”
How to create script that I can enter the column and the row number and it print me back the content?
Note! that the comma between the quotation marks as a parameter and not as a separator..
edit: Wanted output: for arguments: 1,1 (col,row) the given answer will be: A for arguments: 2,2 (col,row) the given answer will be: B,C for arguments: 1,3 (col,row) the given answer will be: A,B for arguments: 3,3 (col,row) the given answer will be: D
Thanks in advanced