您好,登錄后才能下訂單哦!
java怎么獲取字符串后幾位字符?相信很多新手小白還沒學會這個技能,通過這篇文章的總結,希望你能學會學會這個技能。以下資料是實現的步驟。
java中截取字符串中最后幾個字符可以使用String類的substring方法,具體用法參考下方說明:
1、substring(int beginIndex)
substring(int beginIndex)
Returns a new string that is a substring of this string.截取
截取字符串位置beginIndex-1及以后的所有字符,注意字符的起始位置是從0開始的。
例:
String name="weicc-20100107-00001"; System.out.println(name.substring(name.length()-5));//輸出00001
2、substring(int beginIndex, int endIndex)
substring(int beginIndex, int endIndex)
Returns a new string that is a substring of this string.
截取字符串位置beginIndex到位置endIndex-1的所有字符,此方法前閉后開的,即包括beginIndex位置的字符但是不包括endIndex位置的字符。
例:
String name="weicc-20100107-00001"; System.out.println(name.substring(name.length()-5,name.length()));//輸出00001
以上就是java獲取字符串后幾位字符的詳細內容,代碼示例簡單明了,如果在日常工作遇到此問題。通過這篇文章,希望你能有所收獲,更多詳情敬請關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。