You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, two list separators are supported, allowing for a nesting depth of 2 (when encoding lists in cells).
Consider adding brackets [] to support deeper nesting (note: brackets are for grouping, and do not define lists themselves).
Examples:
▪ 1 → 1
▪ [1] → 1
▪ 1;2 → [1,2]
▪ [1;2] → [1,2]
▪ [1;2]; → [[1,2]]
▪ [1];[2] → [1,2]
▪ [1;];[2;] → [[1],[2]]
▪ [2|3];[3|4] → [[2,3], [3,4]]
Also consider supporting quotation marks as an alternative to escaping special characters with backslashes.
The text was updated successfully, but these errors were encountered:
geoo89
changed the title
Support list nesting and quote escaping in cell parser
CellParser: Support list nesting and quote escaping
Feb 1, 2023
Currently, two list separators are supported, allowing for a nesting depth of 2 (when encoding lists in cells).
Consider adding brackets
[
]
to support deeper nesting (note: brackets are for grouping, and do not define lists themselves).Examples:
▪ 1 → 1
▪ [1] → 1
▪ 1;2 → [1,2]
▪ [1;2] → [1,2]
▪ [1;2]; → [[1,2]]
▪ [1];[2] → [1,2]
▪ [1;];[2;] → [[1],[2]]
▪ [2|3];[3|4] → [[2,3], [3,4]]
Also consider supporting quotation marks as an alternative to escaping special characters with backslashes.
The text was updated successfully, but these errors were encountered: