Hi All,
I am having an Excel sheet, In Excel sheet there are 2 Languages English and Hindi. How i can store data in two different arrays as this data come one after other, How i Check that data?????
Thanks In Advance....................
Printable View
Hi All,
I am having an Excel sheet, In Excel sheet there are 2 Languages English and Hindi. How i can store data in two different arrays as this data come one after other, How i Check that data?????
Thanks In Advance....................
When you parse in the data in through a loop, if the words are being read in as English, Hindi, English, Hindi, English, ect, then just have a boolean value called isEnglishWord or something. Flip the value with "isEnglishWord = !isEnglishWord" after each pass of the loop. You will need to set up an if else statement to store each word in it's proper array.
Hope this helps,
Eric
How do you get the data from the excel file? csv file?
Thanks Mr.Solarsonic,
This will Help me.....