用不着正则表达式.for(String s : list) { if(s.length()>0 && s.charAt(0) == 'a') //这里的就是了}非要用当然也行for(String s : list) { if(s.matches("a*")) //和上面的一样}