小编典典

从 Java 字符串中去除前导和尾随空格

all

是否有一种方便的方法可以从 Java 字符串中去除任何前导或尾随空格?

就像是:

String myString = "  keep this  ";
String stripppedString = myString.strip();
System.out.println("no spaces:" + strippedString);

结果:

no spaces:keep this

myString.replace(" ","")将替换 keep 和 this 之间的空间。


阅读 110

收藏
2022-04-26

共1个答案

小编典典

你可以试试 trim() 方法。

String newString = oldString.trim();

看看javadocs

2022-04-26