In Java, I have a String:
Jamaica
I would like to remove the first character of the string and then return amaica
How would I do this?
|
|
|
Use the
|
||||
|
|
|
|||||
|
|
You can use the substring method of the
|
|||
|
|
|
The key thing to understand in Java is that Strings are immutable -- you can't change them. So it makes no sense to speak of 'removing a character from a string'. Instead, you make a NEW string with just the characters you want. The other posts in this question give you a variety of ways of doing that, but its important to understand that these don't change the original string in any way. Any references you have to the old string will continue to refer to the old string (unless you change them to refer to a different string) and will not be affected by the newly created string. This has a number of implications for performance. Each time you are 'modifying' a string, you are actually creating a new string with all the overhead implied (memory allocation and garbage collection). So if you want to make a series of modifications to a string and care only about the final result (the intermediate strings will be dead as soon as you 'modify' them), it may make more sense to use a StringBuilder or StringBuffer instead. |
||||
|
|
|
In Java, remove leading character only if it is a certain character Strips the leading character only if it exists, if passed a blank string, return blankstring.
Prints:
|
|||
|
|