I have an string like"2=33=file". I can get the first number from the string by
char[] cArray = new char[4];
int nValue = Integer.parseInt(String.valueOf(cArray[0]));
How can i get the value "33" from the string .Also if i have in String like "2=3=file" also i want to get the value "3". Sorry if this is a very simple question to ask or may be this being very specific case.