是否有一种方便的方法可以从Java字符串中剥离任何前导或尾随空格?
就像是:
String myString = " keep this ";
String stripppedString = myString.strip();
System.out.println("no spaces:" + strippedString);
结果:
no spaces:keep this
myString.replace(" ","")
将替换keep和this之间的空间。 最佳答案
您可以尝试trim()方法。
String newString = oldString.trim();
看看javadocs
关于java - 从Java字符串中去除前导和尾随空格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62440217/