我現在想從一句話中截取特定格式的字符串,比如從 "<工作>fgdfg<學習>iop<生活>" 中截取
工作, 學習 , 生活,很急!希望大能幫助一下
String _test = "<工作>fgdfg<學習>iop<生活>";
Pattern pattern = Pattern.compile("(?<=<).*?(?=>)");
Matcher macher = pattern.matcher(_test);
while(macher.find()){
System.out.println(macher.group());
}