I need to parse CSV file that may contain quoted multiline string like below:
ID;Name;Password;address; phoneNum
1; "userName"; "userPassword"; "user \n
address"; 1234523423
I looked through Commons CSV library's functionality which seems to satisfy the majority of requirements, but it doesn't seem to have an option to read next line in case quotes aren't closed.
Obviously, if there is a need to use a single quote, it should be screened with an extra pair of double quotes.