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

字符串split的用法

时间:2020-07-25 10:01:22      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:temp   int   length   style   效果   字符   system   mic   img   

拆分字符串:张三:20|李四:40|王五:40

这个可以使用两次分割,第一次使用 | 分割,放到arr数组里,然后使用循环对arr[i]进行使用:分割
1     public static void main(String[] args) {
2         String str = "张三:20|李四:40|王五:40";
3         String[] arr = str.split("\\|");
4         for (int i = 0; i < arr.length; i++) {
5             System.out.println(arr[i]);
6         }
7     }

技术图片

1     public static void main(String[] args) {
2         String str = "张三:20|李四:40|王五:40";
3         String[] arr = str.split("\\|");
4         for (int i = 0; i < arr.length; i++) {
5             String [] temp = arr[i].split(":");
6             System.out.println("姓名 " + temp[0] + "  年龄" + temp[1]);
7         }
8     }

运行效果

技术图片

 

字符串split的用法

标签:temp   int   length   style   效果   字符   system   mic   img   

原文地址:https://www.cnblogs.com/lwl80/p/13375077.html

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