# Parsing a vector of vectors with Meta.parse?

**URL:** https://discourse.julialang.org/t/parsing-a-vector-of-vectors-with-meta-parse/110274
**Category:** General Usage
**Tags:** parsing
**Created:** [February 15, 2024, 10:38pm UTC](https://discourse.julialang.org/t/parsing-a-vector-of-vectors-with-meta-parse/110274 "2024-02-15T22:38:30Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![rafael.guerra](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rafael.guerra/32/216610_2.png) [@rafael.guerra](https://discourse.julialang.org/u/rafael.guerra)
#### Post date: [February 15, 2024, 11:11pm UTC](https://discourse.julialang.org/t/parsing-a-vector-of-vectors-with-meta-parse/110274/5 "2024-02-15T23:11:29Z")

</div>

See [related post here](https://discourse.julialang.org/t/parse-vector-from-string).

PS:  
without using eval you could do:

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

```

---

_[View the full topic](https://discourse.julialang.org/t/parsing-a-vector-of-vectors-with-meta-parse/110274)._
