I have this CSV file format:
"1", "testing <[image|media]>" , "1"
how can to read it from sdcard and put the parsed data in a listview or textview in Android?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Take a look here where I describe a regex you could use. You may need to tinker with it to deal with the extra spaces you have on either side of your commas.
Please remember that rolling your own CSV reader is likely to cause you trouble down the line. Please try very hard to use a ready-made one like OpenCSV mentioned elsewhere.