string. trim()is a built-in function that terminates pioneer and trailing spaces. The Unicode character of the space character is '\u0020'. The trim() process in java checks this Unicode value before and after the string, if it lives then removes the spaces and revisits the omitted string.
Here is the syntax of this method:
public String trim()
Here is the detail of parameters:
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String(" Welcome to Intellinuts.com "); System.out.print("Return Value :" ); System.out.println(Str.trim() ); } }
This will produce the following result:
Return Value :Welcome to Intellinuts.com
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.