I would like to convert the following string into an array/nested array:
str = "[[this, is],[a, nested],[array]]"
newarray = # this is what I need help with!
newarray.inspect # => [['this','is'],['a','nested'],['array']]
|
|
|
|
|
|
|
You'll get what you want with YAML. But there is a little problem with your string. YAML expects that there's a space behind the comma. So we need this
Code:
|
||
|
|
|
|
Looks like a basic parsing task. Generally the approach you are going to want to take is to create a recursive function with the following general algorithm
The only slighlty tricky part here is splitting the input on a single ','. You could write a separate function for this that would scan through the string and keep a count of the openbrackets - closedbrakets seen so far. Then only split on commas when the count is equal to zero. |
||
|
|
|
|
Make a recursive function that takes the string and an integer offset, and "reads" out an array. That is, have it return an array or string (that it has read) and an integer offset pointing after the array. For example:
Then you can call it with another function that provides an offset of 0, and makes sure that the finishing offset is the length of the string. |
||
|
|
|
|
For a laugh:
Disclaimer: You definitely shouldn't do this as |
||
|
|
|
|
You could also treat it as almost-JSON. If the strings really are only letters, like in your example, then this will work:
If they could have arbitrary characters (other than [ ] , ), you'd need a little more:
|
||
|
|