例如:String str = "hello word!";
System.out.println(str.substring(1,4));
System.out.println(str.substring(3,5));
System.out.println(str.substring(0,4));
将得到结果为:
ell
lo
hell
Java字符串的截取
最新推荐文章于 2023-06-24 13:53:24 发布
500

被折叠的 条评论
为什么被折叠?



