Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

7 Answers

up vote 3 down vote accepted
String start = "A,B,C,";
String result = start.subString(0, start.lastIndexOf(',', start.lastIndexOf(',') - 1));
share|improve this answer

Here is a fairly "robust" reg-exp solution:

Pattern p = Pattern.compile("((\\w,?)+),\\w+,?");

for (String test : new String[] {"A,B,C", "A,B", "A,B,C,",
                                 "ABC,DEF,GHI,JKL"}) {
    Matcher m = p.matcher(test);
    if (m.matches())
        System.out.println(m.group(1));
}

Output:

A,B
A
A,B
ABC,DEF,GHI
share|improve this answer
1  
+1 for using RegExp – Buhake Sindi Sep 14 '10 at 12:55

Since there may be a trailing comma, something like this (using org.apache.commons.lang.StringUtils):

ArrayList<String> list = new ArrayList(Arrays.asList(myString.split()));
list.remove(list.length-1);
myString = StringUtils.join(list, ",");
share|improve this answer
1  
Surely doing the full split and join is massive overkill? – T.J. Crowder Sep 14 '10 at 12:33
It depends on his case. The code is simple and readable and does not prematurely optimize. I like the regex solution, though. – Peter DeWeese Sep 14 '10 at 12:58

You can use String#lastIndexOf to find the index of the second-to-last comma, and then String#substring to extract just the part before it. Since your sample data ends with a ",", you'll need to use the version of String#lastIndexOf that accepts a starting point and have it skip the last character (e.g., feed in the string's length minus 1).

I wasn't going to post actual code on the theory better to teach a man to fish, but as everyone else is:

String data = "A,B,C,";
String shortened = data.substring(0, data.lastIndexOf(',', data.length() - 2));
share|improve this answer
He doesn't want "C". – Peter DeWeese Sep 14 '10 at 12:28
@Peter: Not C, Java. – T.J. Crowder Sep 14 '10 at 12:29
at the end(after C) I also have a comma.So when I want to get the lastIndexOf comma I will get the index of last comma that is comma after C. – Suvonkar Sep 14 '10 at 12:30
@Suvonkar: I just noticed that and was updating as you were commenting; see the update. – T.J. Crowder Sep 14 '10 at 12:32
Real funny, T.J. :-P – Peter DeWeese Sep 14 '10 at 12:34
show 1 more comment

You can use regex to do this

String start = "A,B,C,";
String result = start.replaceAll(",[^,]*,$", "");
System.out.println(result);

prints

A,B

This simply erases the the 'second last comma followed by data followed by last comma'

share|improve this answer

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?

String start = "A,B";
StringBuilder result = new StringBuilder();
int count = 0;
for(char ch:start.toCharArray()) {
    if(ch == ',') {
        count++;
        if(count==2) {
            break;
        }
    }
    result.append(ch);
}
System.out.println("Result = "+result.toString());

Simple trick, but should be efficient.

In case you want last set of data removed, irrespective of how much you want to read, then start.substring(0, start.lastIndexOf(',', start.lastIndexOf(',')-1))

share|improve this answer

Another way to do this is using a StringTokenizer:

  String input = "A,B,C,";
  StringTokenizer tokenizer = new StringTokenizer(input, ",");
  String output = new String();
  int tokenCount = tokenizer.countTokens();
  for (int i = 0; i < tokenCount - 1; i++) {
    output += tokenizer.nextToken();
    if (i < tokenCount - 1) {
      output += ",";
    }
  }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.