I have the following string "store_Number, book_Name,
author, Title , Number" and I need to separate into fields or variables like this.
String xBookName = book_Name;
String xAuthor = author;
String xTitle = Title;
String xNumber = Number;
How do I break down this string so that I can assign them to respective variables?
Go to the complete details ...