How do I get up to the first n characters of a string in java without doing a size check first(inline is acceptable) or risking an IndexOutOfBoundsException?
|
|
Here's a neat solution:
Opinion: while this solution is "neat", I think it is actually less readable than a solution that uses |
|||||||||||||||
|
|
There's a class of question on SO that sometimes make less than perfect sense, this one is perilously close :-) Perhaps you could explain your aversion to using one of the two methods you ruled out. If it's just because you don't want to pepper your code with
which will check lengths beforehand and act accordingly (either return smaller string or pad with spaces). Then you don't have to worry about it in your code at all, just call:
instead of:
This would work in the case that you seem to be worried about (based on your comments to other answers), not breaking the flow of the code when doing lots of string building stuff. |
||||
|
|
Use the substring method, as follows:
If n is greater than the length of the string, this will throw an exception, as one commenter has pointed out. one simple solution is to wrap all this in the condition |
|||||||||||
|
|
Don't reinvent the wheel...:
Javadoc says:
|
|||||
|