字符串多条件分割

实现原理:

1、将分割条件放在集合中

2、利用Math类的Random生成指定长度的字符串作为唯一标识分割符

3、for循环操作获取集合中的元素,在被分割字符串中利用replace方法在字符串中查找集合中的元素,并替换成唯一标识分隔符+集合元素。产生新的带有分隔符的字符串。

4、调用String类的split方法将字符串分割,存放在String类型的数组中。


package com.test;


import java.util.ArrayList;
import java.util.Iterator;


public class SplitStringMultiCondition {


//生成随机产生的6位数
public static String getUnique(){
String unique="";
String[] str=new String[]{"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
for(int i=0;i<6;i++){
int round = (int) Math.round(Math.random()*26);
unique+=str[round];
}
return unique;
}

// 在每个条件前面插入一个唯一标识
public static String test(ArrayList arrayList,String data,String unique){
while(data.indexOf(unique)>-1){
unique=getUnique();
}
Iterator iterator = arrayList.iterator();
while (iterator.hasNext()) {
String  s = (String) iterator.next();
if(data.indexOf(s)>-1){
data=data.replace(s, unique+s);
}

}
return data;
}

public static void main(String[] args) {
String data="个人信息 姓名:张三;年龄:25";
ArrayList arrayList = new ArrayList();
arrayList.add("姓名");
arrayList.add("年龄");
String unique = getUnique();
String test = test(arrayList, data,unique);
String[] split = test.split(unique);
for (int i = 0; i < split.length; i++) {
System.out.println(split[i]);
}
}
}

你可能感兴趣的:(字符串多条件分割)