In this section, you will learn how to remove the blank spaces.
Trim String Example
In this section, you will learn how to remove the blank spaces. For removing the blank spaces use trim() method that removes the blank spaces and shows only string.
Description of code:
trim():
This method removes the blank spaces from both ends of the given string
(Front and End).
Here is the code of program:
import java.lang.*;
|
Here is the video tutorial of "How to Trim String in Java?":
Output of program:
C:\vinod\Math_package>javac StringTrim.java C:\vinod\Math_package>java StringTrim String trim example! Given String : RoseIndia After trim :RoseIndia |