has anyone ran into this issue; We have input files the we ETL ,using Spring Batch 2.1.8, that have double quotes that surround certain values in the input stream. These quotes must be maintained for further downstream processing.
Is there a way to tell the provided LineMapper to ignore these quotes when tokenizing the unput record or is a custom implementaion required ?
ie.
incoming record-> 190025^Port^2374^Conference ""Stat""^
outgoing -> 190025^Port^2374^Conference ""Stat""^
Currently the tolenizer produces :
outgoing -> 190025^Port^2374^Conference "Stat"^
thanks


Reply With Quote