//String with spaces I will trim
String spaceString = ” wassup? “;
//Using the Trim Function
String slimString = spaceString.trim();
———–Program Example———

//Programmer:Akinwale Owi
//Company:Dagba Computers
//Program Purpose:Use the Trim Function on a String
package dagba.samples;
/**
*
* @author Akin
*/
public class DagbaSamples {
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
//String with spaces I will trim
String spaceString = ” wassup? “;
//printing a word next to spaceString to test
String howdy = “chillin”;
//adding Strings together to test
System.out.println(spaceString + howdy);
//Using the Trim Function
String slimString = spaceString.trim();
//printing out to test
System.out.println(slimString + howdy);
}//end of main
}//end of public Dagba Class