Hi Have a file called read.txt and below is the data inside file.
OS:B,A,Linux,Windows 7,Windows
ARCH:32 Bit,64 Bit
Browser:Chrome,Firefox,IE
I want to read the file and want to store the data into String array for each column by spiting with
":" symbol.
example is below
String a[] = { "A","B","Linux", "Windows 7", "Windows" };
String b[] = { "32 Bit", "64 Bit"};
String c[] = { "Chrome", "Firefox" ,"IE"};