标签:处理 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