There is a CSV view
1;2;3;4;"abc.com/d=e;q;w;e"
To break a string, I take ";" as a character, but since In url this sign is present, then I get an incorrect result. The csv is big enough and it is expensive to process by characters. Is there any thread way? now I read line by line and do stroka.split (";"), how do I create a regular expression that takes quotation marks into account?