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

字符串处理

时间:2019-01-26 12:38:57      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:处理   string   数组   div   class   tom   格式   bsp   highlight   

 String str2="Tom:90|Jerry:80|Tony:89";

 把格式改成姓名:XX 年龄:xx

String[] temp=str2.split("\\|");
		 for(int x=0;x<temp.length;x++) {
			 String[] test=temp[x].split(":");
			 System.out.println("姓名:"+test[0]+" "+"年龄:"+test[1]);
		 }

1.先把整体的分隔开,以“|"为界,分割了之后存在了字符串数组里面

2.遍历整个数组,把整个数组的每个元素以”:“分隔开,成一个子字符串数组

3.那么子数组的第一项是姓名,第二项是年龄

4.按照指定格式输出即可

 

 

字符串处理

标签:处理   string   数组   div   class   tom   格式   bsp   highlight   

原文地址:https://www.cnblogs.com/cainame/p/10323063.html

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