Is it possible to configure Univocity CSV parser to skip some rows based on predefined conditions like for example values in the cells?
For example I have the following CSV file:
name,city
Alex,NY
Mike,London
Dan,Sydney
and I'd like to skip from the processing(and remove from resultset) all rows where city
equal London
.
I'm unable to find such functionality in documentation. Please advise.