在Java 11中,引入了一个新的方法strip()
,用于去除字符串的首尾空格。这个方法与trim()
方法类似,但是strip()
方法比trim()
方法更强大,因为它可以去除Unicode空格字符,而不仅仅是ASCII空格字符。
strip()
方法的使用非常简单,只需要在字符串上调用该方法即可。例如:
String str = " Hello World ";
String strippedStr = str.strip();
System.out.println(strippedStr); // 输出:Hello World
除了strip()
方法之外,还引入了stripLeading()
和stripTrailing()
方法,分别用于去除字符串的开头和结尾的空格。使用这两个方法的示例如下:
String str = " Hello World ";
String strippedLeadingStr = str.stripLeading();
String strippedTrailingStr = str.stripTrailing();
System.out.println(strippedLeadingStr); // 输出:Hello World
System.out.println(strippedTrailingStr); // 输出: Hello World
总的来说,strip()
方法为处理字符串中的空格字符提供了更加灵活和便捷的方法,使得代码更加简洁和易读。