Removing the first 3 characters from a string [closed]

Just use substring: "apple".substring(3); will return le


Use the substring method of the String class :

String removeCurrency=amount.getText().toString().substring(3);