`
liuhuixi
  • 浏览: 36247 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
substring public String substring(int beginIndex) 返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。 Example: String str = "abcdefg"; str = str.substring(2); System.out.println(str); return:cdefg public String substring(int beginIndex, int endIndex) 返回一个新字符串,它是此字符串的一个子字符串。该子字符串从指定的 be ...
Global site tag (gtag.js) - Google Analytics