I have CSV file which contains following line.
No,NAme,ID,Description
1,Stack,232,"ABCDEFGHIJKLMNO
-- Jiuaslkm asdasdasd"
used below processor structure GetFile-->SplitText
In SplitText i have given header and line split count as 1.
So i think it could be split row as below..,
No,NAme,ID,Description
1,Stack,232,"ABCDEFGHIJKLMNO
-- Jiuaslkm asdasdasd:"
But it actually split the csv as "2" splits like below.,
*First SPlit:*
No,NAme,ID,Description
1,Stack,232,"ABCDEFGHIJKLMNO
*Second Split:*
No,NAme,ID,Description
-- Jiuaslkm asdasdasd"
So i have faced data handling missed something.
*GOal:Now i need to handle those data lines as single line.*
Any one help me to resolve this?