Open In App
Related Articles

Trim (Remove leading and trailing spaces) a string in Java

Improve Article
Improve
Save Article
Save
Like Article
Like

Given a string, remove all the leading and trailing spaces from the string and return it.

Examples:

Input :  str = "   Hello World   "
Output : str = "Hello World"

Input :  str = "      Hey  there    Joey!!!      "
Output : str = "Hey  there    Joey!!!"
  • We can eliminate the leading and trailing spaces of a string in Java with the help of trim().
  • trim() method is defined under the String class of java.lang package.
  • It does not eliminated the middle spaces of the string.
  • By calling the trim() method, a new String object is returned.
  • It doesn’t replace the value of String object. Therefore if we want the access to the new String object, we just need to reassign it to the old String or assign it to a new variable.

How it works?
For space character the unicode value is ‘\u0020’. This method checks for this unicode value before and after the string and if it exists then eliminates the spaces(leading and trailing) and returns the string (without leading and trailing spaces).




public class remove_spaces
{
    public static void main(String args[])
    {
        String str1 = "  Hello World  ";
        System.out.println(str1);
        System.out.println(str1.trim());
  
        String str2 = "      Hey  there    Joey!!!      ";
        System.out.println(str2);
        System.out.println(str2.trim());
    }
}


Output:

  Hello World  
Hello World
      Hey  there    Joey!!!  
Hey  there    Joey!!!    

If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 11 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials