1
我嘗試做一些這樣的:我怎麼能在一個字符串replce最後空間(在Java)
String result = "Most Trees Are Blue ";
//Should be return a string without last space
return result.replaseAll("REGEX", "");
結果必然是「大多數樹木藍」,我可以這樣做:
return new StringBuilder(result).deleteCharAt(result.length()-1).toString();
,但我想用正則表達式做。我該怎麼做?
'字符串#TRIM()'? – 2015-02-09 01:16:27
@SotiriosDelimanolis我認爲它也會去掉領先空間。 – 2015-02-09 01:21:11
@AvinashRaj儘管如此,但OP的示例並不包含前導空格。 – 2015-02-09 01:24:18