Java String trim()方法

2019-10-16 22:22:34

Java String trim()方法返回字串刪除前導和尾隨空格的副本。

語法

以下是此方法的語法 -

public String trim()

引數

  • NA

返回值

  • 它返回刪除了前導和尾隨空格的字串,如果沒有前導或尾隨空格,則直接返回此字串。

範例

import java.util.*;

public class Test {

    public static void main(String args[]) {
        String Str = new String("   Welcome to Tw511.com   ");

        System.out.print("Return Value :");
        System.out.println(Str.trim());
    }
}

執行上面範例程式碼,得到以下結果:

Return Value :Welcome to Tw511.com