2016-05-11 145 views

回答

6

得到字符串的長度由string.length();然後用substring來確定你需要從string修剪的位置;

string.substring(string.length()-4,string.length()); 

substring方法用法;

string.substring(beginning index,end index);` 

so your beginning index is 326235253235235 
             | 



and your end index is 326235253235235 
            | 
+0

我建議檢查一下string.length()> = 4,以避免負指數和IndexOutOfBoundException – Exceptyon

+0

@Exceptyon,因爲他手動發送字符串,我不覺得寫下來,但你是對的。 –

+0

@ user1652920我的榮幸 –

0

如果您在FreeMarker模板中輸入string[string?length-4..]。雖然請確保string不會少於4個字符。

相關問題