Hi Experts,
Here I have a text file such contains
india @ 91
Singapore @ 0065
The delimeter is @
here I have to read that text file and
put the values in to two variable like wise
String Country = "india"
String code = "91"
String Country = "singapore"
String code = "0065"
Can you help me to overcome this issues..

