日期:2014-05-20 浏览次数:20920 次
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools
------解决方案--------------------
Templates
* and open the template in the editor.
*/
/**
*
* @author y
*/
public class Main {
public static void main(String[] argc){
String str="我你我你我我我我们你们们你你我我我们你你你你们我";
Pattern p = Pattern.compile("[^我们]+");
String[] t = p.split(str);
for(int i=0;i<t.length;i++)
{
System.out.println(t[i]);
}
}
}
public class Test {
public static void main(String[] args) {
String str = "我你我你我我我我们你们们你你我我我们你你你你们我";
System.out.println(str.replaceAll("我们
------解决方案--------------------
你们", ""));
}
}