I have a char array in string of say length 8,Its filled with 8 characters.Now i want that it should be reduced to size 5. in C we do it by putting null in end how can we do it in java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In Java, you normally wouldn't use a character array. You'd just use a String, so it'd be something like this:
|
|||
|
|
is one way... |
|||
|
|