01.代码如下:
package TIANPAN;
/**
* 此处为文档注释
*
*/
public class TestDemo {
public static void main(String args[]) {
String str = " hello world "; // 定义字符串,包含空格
System.out.println("【" + str + "】"); // 原始字符串
System.out.println("【" + str.trim() + "】"); // 去掉空格后的字符串
}
}
02.效果如下: