Idea Summary
Add a function or functions that can return a row of data as an apex_t_varchar2 type from an apex_t_parser_table type and/or apex_t_parser_row type. Even maybe a function that will return a single value as varchar2(4000).
Use Case
This is helpful when you are trying to parse files and the number of columns are dynamic. Pivoting on the apex_t_parser_table type is cumbersome because there are 322 columns. Also, selecting all 300 col### columns each time is a lot of extra. It is useful to just be able to loop over the columns by number until you hit a null value or some other value and you can be reasonably sure you are done parsing that row.
Preferred Solution (Optional)
Currently, the functions in the comments are the solutions. Although, the APEX developers are probably capable of developing better ones. Attached them in the comments since they were too big to fit.