Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to remove first 3 char from a string?

'apple' change to 'le'  
'a cat' change to 'at'  
' a b c'change to 'b c'

Any lib code can I use or some effective way?

share|improve this question
4  
You should learn basics of String in Java. – Harry Joy Feb 27 '11 at 6:52

3 Answers

up vote 14 down vote accepted

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

share|improve this answer

Use substring method of String class :
string.substring(3);

share|improve this answer

Use substring method of String class :

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

Please don't forget to upvote.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.