Friday, 13 April 2018

String Trim Example



  1. /*
            Java String Trim Example.
            This Java String trim example shows how to remove leading and trailing space
            from string using trim method of Java String class.
    */

    public class RemoveLeadingTrailingSpace  
    {

            public static void main(String[] args)  
    {

                    String str = ”   String Trim Example   “;

                    /*
                     * To remove leading and trailing space from string use,
                     * public String trim() method of Java String class.
                     */

                     String strTrimmed = str.trim();

                     System.out.println(“Original String is: “ + str);
                     System.out.println(“Removed Leading and trailing space”);
                     System.out.println(“New String is: “ + strTrimmed);
            }
    }

    /*
    Output would be
    Original String is:    String Trim Example  
    Removed Leading and trailing space
    New String is: String Trim Example
    */

0 Comments:

Post a Comment

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (1) PHP (20) Projects (19) Python (423) R (69) Selenium Webdriver (2) Software (14) SQL (27)