public class Test{
public static void main(String[] args){
String str = "№2 ☆☆☆白菜蜀黍于2012-03-08 16:30:36留言☆☆☆";
regStr(str);
}
private static void regStr(String str) {
String reg = "[№,☆,于,留言]+";
String[]s = str.split(reg);
String row = s[1];
String userName = s[2];
String createTime = s[3];
System.out.println("楼层号:" + row + "\n" +
"作者名:" + userName + "\n" +
"时间:" + createTime );
}
}
希望你喜欢。。。
使用StringTokizer类就可以解决。