要获取字符串的最后一个字符,你可以使用以下方法之一:
方法1:使用 charAt() 方法
String str = "Hello World";
char lastChar = str.charAt(str.length() - 1);
System.out.println("最后一个字符是:" + lastChar);
方法2:使用 substring() 方法
String str = "Hello World";
String lastChar = str.substring(str.length() - 1);
System.out.println("最后一个字符是:" + lastChar);
在这两种方法中,我们使用 str.length() - 1
来获取字符串的最后一个字符的索引,然后使用 charAt()
方法 或将最后一个字符作为子字符串使用 substring()
方法。
请注意,以上方法假设字符串不为空,如果字符串可能为空,请在使用前进行非空检查以避免异常。文章来源:https://www.toymoban.com/news/detail-775708.html
希望对你有帮助!如果你还有其他问题,请随时提问。文章来源地址https://www.toymoban.com/news/detail-775708.html
到了这里,关于java获取字符串最后一个字符的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!