01.代码如下:
package TIANPAN; /** * 此处为文档注释 * * @author 田攀 微信382477247 */ public class TestDemo { public static void main(String args[]) { String str = "张三:20|李四:21|王五:22"; // 定义字符串 String result[] = str.split("\\|"); // 第一次拆分 for (int x = 0; x < result.length; x++) { String temp[] = result[x].split(":"); // 第二次拆分 System.out.println("姓名:" + temp[0] + ",年龄:" + temp[1]); } } }
02.效果如下:
知识有价,如果您认为这篇文章有价值,认同作者的付出,可以微信二维码打赏任意金额给作者(微信号:382477247)哦,谢谢。
原文地址:https://www.cnblogs.com/tianpan2019/p/12332524.html
时间: 2024-10-17 06:34:11