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

I want to remove last character from a string. I've tried doing this:

public String method(String str) {
  if (str.charAt(str.length()-1)=='x')
  {
    str = str.replace(str.substring(str.length()-1), "");
    return str;
  }
  else
  {
    return str;
  }
}

Getting the length of the string - 1 and replacing the last letter with nothing (deleting it), but every time I run the program, it deletes middle letters that are the same as the last letter.

For example, the word is "admirer"; after I run the method, I get "admie." I want it to return the word admire.

share|improve this question

migrated from programmers.stackexchange.com Sep 15 '11 at 23:31

5 Answers

up vote 27 down vote accepted

Replace will replace all instances of a letter. All you need to do is use substring():

public String method(String str) {

  if (str.length() > 0 && str.charAt(str.length()-1)=='x') {
    str = str.substring(0, str.length()-1);
  }
  return str;
}
share|improve this answer
1  
thanks, that's it – duaprog137 Sep 15 '11 at 23:31
gud...one .....short n sweet – saidesh kilaru Feb 18 at 14:17
public String removeLastChar(String s) {
    if (s == null || s.length() == 0) {
        return s;
    }
    return s.substring(0, s.length()-1);
}
share|improve this answer
What if the last character is a high/low surrogate pair? – Robert Allan Hennigan Leahy May 20 at 14:49

Why not just one liner?

private static String removeLastChar(String str) {
        return str.substring(0,str.length()-1);
    }

Full Code

import java.util.*;
import java.lang.*;

public class Main
{
    public static void main (String[] args) throws java.lang.Exception
    {
                String s1 = "Remove Last CharacterY";
        String s2 = "Remove Last Character2";
        System.out.println("After removing s1==" + removeLastChar(s1) + "==");
        System.out.println("After removing s2==" + removeLastChar(s2) + "==");
        }

    private static String removeLastChar(String str) {
        return str.substring(0,str.length()-1);
    }
}

Demo

share|improve this answer
The check for null and empty string should be considered.. @BobBobBob version is better – KDjava Dec 22 '12 at 10:23
@KDjava : above is valid with considering that valid string is passed. else I would have to add the try catch block also to check that string is correct... – Fahim Parkar Dec 22 '12 at 11:03

The described problem and proposed solutions sometimes relate to removing separators. If this is your case, then have a look at Apache Commons StringUtils, it has a method called removeEnd which is very elegant.

Example:

StringUtils.removeEnd("string 1|string 2|string 3|", "|");

Would result in: "string 1|string 2|string 3"

share|improve this answer
if (str.endsWith("x")) {
  return str.substring(0, str.length() - 1);
}
return str;

For example, the word is "admirer"; after I run the method, I get "admie." I want it to return the word admire.

In case you're trying to stem English words

Stemming is the process for reducing inflected (or sometimes derived) words to their stem, base or root form—generally a written word form.

...

A stemmer for English, for example, should identify the string "cats" (and possibly "catlike", "catty" etc.) as based on the root "cat", and "stemmer", "stemming", "stemmed" as based on "stem". A stemming algorithm reduces the words "fishing", "fished", "fish", and "fisher" to the root word, "fish".

Difference between Lucene stemmers: EnglishStemmer, PorterStemmer, LovinsStemmer outlines some Java options.

share|improve this answer

Your Answer

 
discard

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