Here is my question: I have a file "Test.csv", looks like: a1, b1, c1 a2, b2, c2 All I need to do is to read each values in my script. "," is the delimiter, then how can I read the csv file to arrays - something like: array[1][1] = a1 array[1][2] = b1 ... array[2][2] = b2 array[2][3] = c2