I have a string in java, of uncertain length, and I need to take the first 3 and last 3 characters and put them into new strings. Is there a simple way to do this?
|
|
Funny, all solutions are buggy (update: except the one with the regex) and may result in
|
|||||
|
|
You could use the substring method:
This will take "Hello world!" and create a new string which is "Helld!". If you are looking for a method that you can use:
|
|||
|
|
|
EDIT: This code is not safe. I leave it for you to check whether string is not too short. You can also use regular expressions:
|
|||
|
|
|
Refer to documentation
Result
|
|||
|
|
|
||||
|
|
|
Another way of doing this
|
|||
|
|
|
As milan already said, substring is the way to go here. You can see some examples of use here.
In this example, FirstNameChars will be "Can". To get the last three characters you will have to obtain the length og the string first. |
|||||
|
|