I wan to remove the last set of data from string using java.
For example I have a string like A,B,C, and I want to remove ,C, and want to get the out put value like A,B . How is it possible in java? Please help.
|
|
|||
|
|
|
|||
|
|
|
Here is a fairly "robust" reg-exp solution:
Output:
|
|||||
|
|
Since there may be a trailing comma, something like this (using org.apache.commons.lang.StringUtils):
|
|||||||
|
|
You can use I wasn't going to post actual code on the theory better to teach a man to fish, but as everyone else is:
|
|||||||||||
|
|
You can use regex to do this
prints
This simply erases the the 'second last comma followed by data followed by last comma' |
|||
|
|
|
If full String.split() is not possible, the how about just scanning the string for comma and stop after reaching 2nd, without including it in final answer?
Simple trick, but should be efficient. In case you want last set of data removed, irrespective of how much you want to read, then
|
||||
|
|
|
Another way to do this is using a
|
|||
|
|
