I'm looking for a Java library which will enable me to easily extract data from a specific column (or multiple columns) of CSV text held in memory e.g. in a String.
For example, extract each 'town' value in the records below into an ArrayList<String> object or String[]. Or even further, extract all 'town' and 'country' values from every record.
... I preferably need a solution that doesn't rely on the columns being in fixed positions.
ADDRESS|HOUSE_NO|STREET|TOWN|CITY|COUNTY|COUNTRY
DATA|51|Hill Road|Reading|Berkshire|United Kingdom
DATA|78|Crescent Road|Wallingford|Oxfordshire|United Kingdom
DATA|5|Bonny Crescent|Swindon|Whiltshire|United Kingdom
... note that the entire CSV section in the above example is contained in memory in a single String.
I have already been looking at the option of using an in-memory database engine like H2, but it can't seem to handle running SQL queries against CSV text that's held in memory e.g. in a String. Any suggestions? Thanks in advance