Parsing a vector of vectors with Meta.parse?

See related post here.

PS:
without using eval you could do:

str = "[1, 2, 3]"
parse.(Int, split(filter(∉(['[',']']), str), ','))
3 Likes