最佳答案
是否有一个方便的方法从Java字符串剥离任何前导或尾随空格?
喜欢的东西:
String myString = " keep this ";
String stripppedString = myString.strip();
System.out.println("no spaces:" + strippedString);
结果:
no spaces:keep this
myString.replace(" ","")
将替换keep和this之间的空格。