// 正则操作 获取
import java.util.regex.*;
class Demo{
public static void main(String[] args){
String str="a,bcd,e,fg,hij,k,lmn,opq";
//调用正则获取三个字符的单词
String regex="\b[a-z]{3}\b";
//1,将正则封装成对象
Pattern p=Pattern.compile(regex);
//2,通过正则对象获取匹配器对象
Matcher m=p.matcher(str);
//3,使用Matcher对象的方法对字符串进行操作
//查找:find
while(m.find()){
System.out.println(m.group());
}
}
}