Hello all,
Seprating of a
string having a dot operator
Eg: String all = "NAME.PHONE.CODE.COUNTRY",
How would i go about it...
Means i want to get
String name = all.subString(???); will be returning the NAME part
String phone = all.subString(???); will be returning the PHONE part
String code = all.subString(???); will be returning the CODE part
String country = all.subString(???); will be returning the COUNTRY part
Can anyone help me on this???
Thanxs in advance.