码迷,mamicode.com
首页 > 其他好文 > 详细

1.11 字符串截取

时间:2017-05-10 00:18:03      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:位置   sub   pac   substr   package   ring   字符串   public   sys   

package Demo;

public class Demo4 {
 public static void main(String[] args) {
  String str = "helloworld";
  
  System.out.println(str.substring(5)); //world   从指定位置截取到末尾
  System.out.println(str.substring(0, 5)); //hello   截取指定范围的内容

 }
}

1.11 字符串截取

标签:位置   sub   pac   substr   package   ring   字符串   public   sys   

原文地址:http://www.cnblogs.com/mengliang/p/6833348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!