How can I assign a split parts of a string into an array list directly ?
String format:
ABC;PQR;XYZ
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.
Not sure what you want but doesn’t the following serve your purpose?
Notice that I’ve used the superior
List<String>(fromSystem.Collections.Generic) instead of the deprecatedArrayList.Also, do you really need a modifiable
List? Unless you want to add or remove entries, a plain array should be fine.