力扣2788(按分隔符拆分字符串)

 力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台

class Solution {
    public List splitWordsBySeparator(List words, char separator) {
        List res  = new ArrayList();
        for(int i = 0;i < words.size();i++){
            String s = words.get(i);
            String[] str = s.split("\\" + String.valueOf(separator));
           for(String str1 :str){
               if(str1.length() > 0 && str1 != null){
                   res.add(str1);
               }
           }
        }
        return res;
    }
}

你可能感兴趣的:(leetcode,算法)