Hi,
I've a grid of 20 by 20 2-digit numbers that are separated by spaces. I am wondering how to convert these to a two-dimensional array to work with as a matrix. Manually putting in commas and brackets seems a waste of time; is there an easier solution?
Thank you.
Actually it isn't too difficult to manually put those in if it is a one time ordeal.
Search " " and replace with ",". Then use a regular expression search "^(.*)$" and replace with "{\1}"