Friday 20 November 2015

get data from excel where separated by comma

Below is how we get data from excel, where separated by comma

for 1st value

data.split(",")[0].split("/")[0];

for second value

data.split(",")[0].split("/")[1];

data is function where user can reach towards a row

Where data in excel is like "21/31," like this

No comments:

Post a Comment