How can I convert the string representation of an array, such as the following string, into an Array?
s = "[1,2,3]" I am reading these strings from a file and I am looking for an easy way to have them as a list. In Python I would use eval function. Is there an alternative in Julia? Many thanks, Ali
