📅  最后修改于: 2020-03-27 11:13:44             🧑  作者: Mango
给定字符串,请从字符串中删除所有前导和尾随空格,然后将其返回。
例子:
Input : str = " Hello World "
Output : str = "Hello World"
Input : str = " 你好 Joey!!! "
Output : str = "你好 Joey!!!"
怎么运行的?
对于空格字符,unicode值为’\ u0020’。此方法检查字符串前后的unicode值,如果存在,则消除空格(前导和尾随),并返回字符串(不包含前导和尾随空格)。
public class remove_spaces
{
public static void main(String args[])
{
String str1 = " Hello World ";
System.out.println(str1);
System.out.println(str1.trim());
String str2 = " 你好 Joey!!! ";
System.out.println(str2);
System.out.println(str2.trim());
}
}
输出:
Hello World
Hello World
你好 Joey!!!
你好 Joey!!!